From 6267fe9e1e06424e25bd5325ca297c3538530818 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Mon, 7 Jun 2021 08:43:46 -0700 Subject: Remove broken conda example --- CONTRIBUTING.rst | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index d15747e1..6a31454b 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -33,7 +33,6 @@ Development Workflow - ``origin``, which refers to your personal fork * Next, you need to set up your build environment. - Here are instructions for two popular environment managers: * ``venv`` (pip based) @@ -57,27 +56,6 @@ Development Workflow # Test your installation PYTHONPATH=. pytest networkx - * ``conda`` (Anaconda or Miniconda) - - :: - - # Create a conda environment named ``networkx-dev`` - conda create --name networkx-dev - # Activate it - conda activate networkx-dev - # Install main development and runtime dependencies of networkx - conda install -c conda-forge `for i in requirements/{default,developer,test}.txt; do echo -n " --file $i "; done` - # - # (Optional) Install pygraphviz, pydot, and gdal packages - # These packages require that you have your system properly configured - # and what that involves differs on various systems. - # pip install -r requirements/extra.txt - # - # Install networkx from source - pip install -e . --no-deps - # Test your installation - PYTHONPATH=. pytest networkx - * Finally, we recommend you use a pre-commit hook, which runs black when you type ``git commit``:: -- cgit v1.2.1