Skip to content
Open
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
15 changes: 15 additions & 0 deletions user_guide/API_ref/pycmap_api/pycmap_install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,22 @@ pycmap can be installed using pip:

pip install pycmap

You may find the above command installs pycmap to python2. Since pycmap requires python3, this causes issues. If this happens to you, try the following commands:

.. code-block:: shell

python3 -m pip install pycmap
python3 -m pip install IPython

To test your installation, one easy way is to go into a python interactive shell and try importing the module:

.. code-block:: shell

$ python3
>>> import pycmap
>>>
#if you get no errors after importing (as above), then you are good to go!


In order to use pycmap, you will need to obtain an API key from https://simonscmap.com/apikeymanagement.

Expand Down