Answers for "how to install python package for specific place"

1

pip install package to specific directory

pip install --install-option="--prefix=$PREFIX_PATH" package_name
Posted by: Guest on August-19-2021
10

how to pip install a specific version

# At the time of writing this numpy is in version 1.19.x
# This statement below will install numpy version 1.18.1
python -m pip install numpy==1.18.1
Posted by: Guest on July-12-2020

Code answers related to "how to install python package for specific place"

Python Answers by Framework

Browse Popular Code Answers by Language