diff --git a/.github/CONTRIBUTING.rst b/.github/CONTRIBUTING.rst index c04a37cf2f..84f13a6f45 100644 --- a/.github/CONTRIBUTING.rst +++ b/.github/CONTRIBUTING.rst @@ -140,45 +140,8 @@ A good example: Installing Qiskit Terra from source ----------------------------------- -This section include some tips that will help you install and push source code. - -.. note:: - - We recommend using `Python virtual environments `__ - to cleanly separate Qiskit from other applications and improve your experience. - - -Setup with an environment -~~~~~~~~~~~~~~~~~~~~~~~~~ - -The simplest way to use environments is by using Anaconda - -.. code:: sh - - conda create -y -n QiskitDevenv python=3 - source activate QiskitDevenv - -For the python code, we need some libraries that can be installed in this way: - -.. code:: sh - - cd qiskit-terra - pip install -r requirements.txt - pip install -r requirements-dev.txt - -To get the examples working try - -.. code:: sh - - $ pip install -e . - -and then you can run them with - -.. code:: sh - - $ python examples/python/using_qiskit_terra_level_0.py - -We recommend that after setting up Terra you set up Aer to get more advanced simulators. +Please see the `Installing Qiskit Terra from Source `_ +section of the Qiskit documentation. Test