You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/2021-01-27-pip-support.markdown
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,22 @@ This update is brought to you from [@coolreader18's](https://github.com/coolread
22
22
23
23
24
24
##What you need to do
25
+
26
+
(Update 2021-02-08): Everything has been merged to master!
27
+
28
+
```shell
29
+
$ cargo install --git https://github.com/RustPython/RustPython --features ssl# or however you build
30
+
$ curl https://bootstrap.pypa.io/get-pip.py -O
31
+
$ rustpython get-pip.py
32
+
...lots of work...
33
+
$ rustpython -m pip --version
34
+
pip 21.0 from /home/.../.local/lib/rustpython3.9/site-packages/pip (python 3.9)
35
+
```
36
+
37
+
There's undoubtedly still a lot that doesn't work, so if there's something simple-ish that errors inside of pip or a setup script, feel free to open an issue for it (note that C extensions won't be supported anytime soon, and a ctypes implementation is in progress).
38
+
39
+
(Previous instructions):
40
+
25
41
This update is so fresh, things are not merged into the`master` or`release` branches yet. For now, to test this out, you have to checkout the`pip-merg` branch, and make sure to build with the`ssl` feature:
26
42
27
43
```shell
@@ -34,4 +50,4 @@ This update is so fresh, things are not merged into the `master` or `release` br
34
50
...lots of work...
35
51
$ rustpython -m pip --version
36
52
pip 21.0 from /home/.../.local/lib/rustpython3.9/site-packages/pip (python 3.9)