2

I want to install fastai using setup.py in a project. The nicest way, if I have a conda environment, is to use the conda install command conda install -c pytorch -c fastai fastai. Unfortunately, if I just add fastai as a requirement, it gets installed using pip, which I have experienced issues with.

Simply, is there a way to install fastai using conda a setup.py file (using the conda install command)?

1 Answer 1

2

As far as I know, conda package manager does not understand setup.py. As a result, one cannot install packages from setup.py with conda.

However, we can install libraries using conda with a .yml file. Typically, this is used to copy a conda environment across machines. More information about creating environment file and using it.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.