Skip to content
Snippets Groups Projects
Commit 08dd2952 authored by davidovitch's avatar davidovitch
Browse files

docs: more (py)pandoc related dependency fixes in the dev-guide,

conda-forge channel doesn't need to be defined with full URL
parent 5fc7d547
No related branches found
No related tags found
No related merge requests found
...@@ -147,7 +147,7 @@ Install the necessary Python dependencies using the conda package manager: ...@@ -147,7 +147,7 @@ Install the necessary Python dependencies using the conda package manager:
``` ```
>> conda install setuptools_scm future h5py pytables pytest pytest-cov nose sphinx blosc pbr paramiko >> conda install setuptools_scm future h5py pytables pytest pytest-cov nose sphinx blosc pbr paramiko
>> conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl psutil pandoc >> conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl psutil pandoc
>> conda install -c https://conda.anaconda.org/conda-forge pyscaffold --no-deps >> conda install -c conda-forge pyscaffold pypandoc --no-deps
``` ```
Note that ```--no-deps``` avoids that newer packages from the channel Note that ```--no-deps``` avoids that newer packages from the channel
...@@ -179,7 +179,7 @@ or via tortoise-git: ...@@ -179,7 +179,7 @@ or via tortoise-git:
>> pip install -e . --no-deps >> pip install -e . --no-deps
``` ```
Note that the ```no-deps``` option here is used for the same reason as explained Note that the ```--no-deps``` option here is used for the same reason as explained
above for the ```conda-forge``` channel: it is to avoid that pip will replace above for the ```conda-forge``` channel: it is to avoid that pip will replace
newer packages compared to the ones as available in the ```Anaconda``` channel. newer packages compared to the ones as available in the ```Anaconda``` channel.
...@@ -231,9 +231,12 @@ is also recorded in issue #22. ...@@ -231,9 +231,12 @@ is also recorded in issue #22.
Install ```pypandoc``` using conda: Install ```pypandoc``` using conda:
``` ```
>> conda install pandoc >> conda install pandoc
>> conda install -c conda-forge pypandoc --no-deps
``` ```
Or pip: However, when installing via pip you will need to install
[```pandoc```](http://pandoc.org/) first via your Linux/Mac package manager,
then you can install the Python wrapper:
``` ```
>> pip install pypandoc >> pip install pypandoc
``` ```
......
...@@ -9,7 +9,7 @@ Install the necessary Python dependencies using the ```conda``` package manager: ...@@ -9,7 +9,7 @@ Install the necessary Python dependencies using the ```conda``` package manager:
``` ```
>> conda install setuptools_scm future h5py pytables pytest pytest-cov nose sphinx blosc pbr paramiko >> conda install setuptools_scm future h5py pytables pytest pytest-cov nose sphinx blosc pbr paramiko
>> conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl psutil >> conda install scipy pandas matplotlib cython xlrd coverage xlwt openpyxl psutil
>> conda install -c https://conda.anaconda.org/conda-forge pyscaffold --no-deps >> conda install -c conda-forge pyscaffold --no-deps
``` ```
Now you can install ```wetb``` with ```pip``` (there is no ```conda``` package Now you can install ```wetb``` with ```pip``` (there is no ```conda``` package
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment