We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c8ae3a commit 3338aedCopy full SHA for 3338aed
README.md
@@ -66,6 +66,18 @@ Welcome to the magnificent Rust Python interpreter
66
>>>>>
67
```
68
69
+### venv
70
+
71
+Because RustPython currently doesn't provide a well-packaged installation, using venv helps to use pip easier.
72
73
+```sh
74
+$ rustpython -m venv <your_env_name>
75
+$ . <your_env_name>/bin/activate
76
+$ python # now `python` is the alias of the RustPython for the new env
77
+```
78
79
+### PIP
80
81
If you'd like to make https requests, you can enable the `ssl` feature, which
82
also lets you install the `pip` package manager. Note that on Windows, you may
83
need to install OpenSSL, or you can enable the `ssl-vendor` feature instead,
0 commit comments