Conda version pip install -r requirements.txt --target ./lib
Solution 1
You can run conda install --file requirements.txt instead of the loop, but there is no target directory in conda install. conda install installs a list of packages into a specified conda environment.
Solution 2
To create an environment named py37 with python 3.7, using the channel conda-forge and a list of packages:
conda create -y --name py37 python=3.7
conda install --force-reinstall -y -q --name py37 -c conda-forge --file requirements.txt
conda activate py37
...
conda deactivate
Flags explained:
-
-y: Yes, do not ask for confirmation. -
--force-reinstall: Install the package even if it already exists. -
-q: Quiet, do not display progress bar. -
-c: Channels, additional channels to search for packages. These are URLs searched in the order
Alternatively you can create an environment.yml file instead of requirements.txt:
name: py37
channels:
- conda-forge
dependencies:
- python=3.7
- numpy=1.9.*
- pandas
Use these commands to create and activate the conda environment based on the specifications in the Yaml file:
conda env create --file environment.yml
conda activate py37
Use this command to list the environments you have:
conda info --envs
Use this command to remove the environment:
conda env remove --name py37
New! The ansible-role dockpack.base_conda can manage conda environments on Linux, Mac and Windows, and can be used to create a docker image with custom conda environments.
Solution 3
You can always try this:
/home/user/anaconda3/bin/pip install -r requirements.txt
This simply uses the pip installed in the conda environment. If pip is not preinstalled in your environment you can always run the following command
conda install pip
Solution 4
A quick search on the conda official docs will help you to find what each flag does.
So far:
-
-y: Do not ask for confirmation. -
-f: I think it should be--file, so it read package versions from the given file. -
-q: Do not display progress bar. -
-c: Additional channel to search for packages. These are URLs searched in the order
Solution 5
would this work?
cat requirements.txt | while read x; do conda install "$x" -p ./lib ;done
or
conda install --file requirements.txt -p ./lib
Related videos on Youtube
vineeth kanaparthi
Updated on November 01, 2021Comments
-
vineeth kanaparthi over 1 yearWhat is the conda version of this?
pip install -r requirements.txt --target ./libI've found these commands:
while read requirement; do conda install --yes $requirement; done < requirements.txtBut it doesn't tell how to specify
--target ./lib-
Charlie Parker about 2 yearsdid you tryconda install --file requirements.txt?
-
-
Ataxias almost 4 yearsexplaining the flags would be useful -
ionox0 over 3 yearsIs there any reason why after the 2nd command above python3 is removed from the environment and python2 is the only one remaining? -
bbaassssiiee over 3 yearsconda manages python environments, conda deactivate resets your shell, conda activate py37 sets your PATH. -
Dr_Zaszuś about 3 yearsWhen I do this on myrequirements.txtspecifying versions of packages, I getInvalidVersionSpec: Invalid version '3.0.': empty version component -
Remi Cuingnet almost 3 years -
Hrvoje over 2 yearsIt could be usefull if you add where to put yaml file and how to install environment from it. I guess environment doesn't simply come to existence if you have yaml file. -
Tms91 over 2 yearsJust pip install -r requirements.txt works great for me. -
EfratBlaier about 2 yearsbest solution for me: cat requirements.txt | while read x; do conda install -y "$x" ;done -
Nikolay Fominyh about 2 yearspython -m pip install -r requirements.txt with activated conda env -
Charlie Parker about 2 yearswhat do you mean byconda install installs a list of packages into a specified conda environment.? For me it usually installs it for whatever conda env is active at the moment. -
phd about 2 years@CharlieParker The OP wanted to install to a different directory;pipcan do this butcondaprobably cannot. -
William Torkington almost 2 years@Ataxias was very right, the flag explanations are very helpful. +1! -
john.da.costa almost 2 yearsi like that one, it could possibly run slower, but more reliable. -
arranjdavis over 1 yearSame as above, once I activated thecondaenvironment, I just didpip3 install -r requirements.txt.