Skip to content

Instantly share code, notes, and snippets.

@danieltomasz
Created February 8, 2019 14:19
Show Gist options
  • Save danieltomasz/71335235364aa1f0ee79cfb73e917eb4 to your computer and use it in GitHub Desktop.
Save danieltomasz/71335235364aa1f0ee79cfb73e917eb4 to your computer and use it in GitHub Desktop.
How to install python packages downloaded from github

Open terminal in inside downloaded folder. When the folder has setup.py scripts probably could by installed as module.

When you using conda install first install build package

# Display information about current conda install
conda info

# Install conda-build in the current env
conda install conda-build

Then you could do it similar like with pip

conda develop .
pip install -e .
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment