Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edits to contributing #5

Merged
merged 1 commit into from
Dec 26, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ Pre-requisites

Most of the required dependencies can be installed via ``pip``, using the
``requirements-dev.txt`` file, eg:
``pip install -r requirements-dev.txt``.

.. code:: sh

pip install -U -r requirements-dev.txt

As we are dealing with languages that build to native binaries, we will
need to have installed any of the `supported CMake build tools <https://cmake.org/cmake/help/v3.5/manual/cmake-generators.7.html>`_.
Expand Down Expand Up @@ -85,7 +88,7 @@ You further need to have Command Line Tools installed on MacOS:

.. code::

$ xcode-select —install
$ xcode-select -—install


**Linux (Ubuntu >= 16.04)**
Expand Down Expand Up @@ -147,7 +150,7 @@ build in parallel, using 8 processes.

.. code::

python ./setup.py bdist_wheel --plat-name macosx-10.9-x86_64 -- -DSTATIC_LINKING=False -- -j8
qiskit-aer$ python ./setup.py bdist_wheel --plat-name macosx-10.9-x86_64 -- -DSTATIC_LINKING=False -- -j8


After this command is executed successfully, we will have a wheel package into the ``dist/`` directory, so next step is installing it:
Expand Down