Unverified Commit 85e1ac4d authored by Francisco Massa's avatar Francisco Massa Committed by GitHub

Improve installation instructions for fresh conda (#12)

parent 65eedbd8
...@@ -12,6 +12,16 @@ ...@@ -12,6 +12,16 @@
### Step-by-step installation ### Step-by-step installation
```bash ```bash
# first, make sure that your conda is setup properly with the right environment
# for that, check that `which conda`, `which pip` and `which python` points to the
# right path. From a clean conda env, this is what you need to do
conda create --name maskrcnn_benchmark
source activate maskrcnn_benchmark
# this installs the right pip and dependencies for the fresh python
conda install ipython
# maskrnn_benchmark and coco api dependencies # maskrnn_benchmark and coco api dependencies
pip install ninja yacs cython matplotlib pip install ninja yacs cython matplotlib
...@@ -44,5 +54,3 @@ python setup.py build develop ...@@ -44,5 +54,3 @@ python setup.py build develop
# or if you are on macOS # or if you are on macOS
# MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py build develop # MACOSX_DEPLOYMENT_TARGET=10.9 CC=clang CXX=clang++ python setup.py build develop
``` ```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment