Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
python3-pip /
html /
topics /
Delete
Unzip
Name
Size
Permission
Date
Action
authentication.md
3.13
KB
-rw-r--r--
2023-02-17 18:31
caching.md.gz
1.98
KB
-rw-r--r--
2023-02-17 18:31
configuration.md.gz
2.29
KB
-rw-r--r--
2023-02-17 18:31
dependency-resolution.md.gz
4.74
KB
-rw-r--r--
2023-02-17 18:31
deps.dot
353
B
-rw-r--r--
2023-02-17 18:31
deps.png
26.71
KB
-rw-r--r--
2023-02-17 18:31
https-certificates.md
2.53
KB
-rw-r--r--
2023-02-17 18:31
index.md
418
B
-rw-r--r--
2023-02-17 18:31
local-project-installs.md
3.46
KB
-rw-r--r--
2023-02-17 18:31
more-dependency-resolution.md.gz
3.41
KB
-rw-r--r--
2023-02-17 18:31
python-option.md
938
B
-rw-r--r--
2023-02-17 18:31
repeatable-installs.md
3.74
KB
-rw-r--r--
2023-02-17 18:31
secure-installs.md.gz
2.58
KB
-rw-r--r--
2023-02-17 18:31
vcs-support.md.gz
1.92
KB
-rw-r--r--
2023-02-17 18:31
Save
Rename
# Managing a different Python interpreter ```{versionadded} 22.3 ``` Occasionally, you may want to use pip to manage a Python installation other than the one pip is installed into. In this case, you can use the `--python` option to specify the interpreter you want to manage. This option can take one of two values: 1. The path to a Python executable. 2. The path to a virtual environment. In both cases, pip will run exactly as if it had been invoked from that Python environment. One example of where this might be useful is to manage a virtual environment that does not have pip installed. ```{pip-cli} $ python -m venv .venv --without-pip $ pip --python .venv install SomePackage [...] Successfully installed SomePackage ``` You could also use `--python .venv/bin/python` (or on Windows, `--python .venv\Scripts\python.exe`) if you wanted to be explicit, but the virtual environment name is shorter and works exactly the same.