Commit 781e2dea authored by Yuxin Wu's avatar Yuxin Wu

bug fix about pypandoc dependency

parent 56fe4b3e
...@@ -64,7 +64,6 @@ Dependencies: ...@@ -64,7 +64,6 @@ Dependencies:
+ (optional) use tcmalloc if running with large data + (optional) use tcmalloc if running with large data
``` ```
git clone https://github.com/ppwwyyxx/tensorpack/ && cd tensorpack pip install --user -U git+https://github.com/ppwwyyxx/tensorpack.git
pip install --user --upgrade .
pip install --user -r opt-requirements.txt # (some optional dependencies required by certain submodules, you can install later if prompted) pip install --user -r opt-requirements.txt # (some optional dependencies required by certain submodules, you can install later if prompted)
``` ```
...@@ -14,7 +14,6 @@ try: ...@@ -14,7 +14,6 @@ try:
import pypandoc import pypandoc
long_description = pypandoc.convert_file('README.md', 'rst') long_description = pypandoc.convert_file('README.md', 'rst')
except ImportError: except ImportError:
raise
long_description = open('README.md').read() long_description = open('README.md').read()
# configure requirements # configure requirements
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment