Edinburgh-Genome-Foundry / bioprinter

🖨️ Print pictures with living micro-organisms !

Home Page:http://edinburgh-genome-foundry.github.io/bioprinter/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot install via pip

ecederstrand opened this issue · comments

I cannot install the package just uploaded to PyPI into a fresh virtualenv because it depends on ez_setup which is not installed:

$ python3.5 -m venv test_env
$ source test_env/bin/activate
(test_env) $ pip install bioprinter
Looking in indexes: https://pypi.org/simple
Collecting bioprinter
  Downloading https://pypi.org/packages/d9/3d/a823c9ad7b67b1b27029c1784afb2bf72a7d48827912fc0ac78f4c634fc8/bioprinter-0.1.1.tar.gz
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-install-8rxmp23n/bioprinter/setup.py", line 1, in <module>
        import ez_setup
    ImportError: No module named 'ez_setup'

I can see that there's a local ez_setup.py in the repo, but either it's not being picked up by the import statement, or it is not mentinoned in the manifest file and has therefore not been bundled with the package on PyPI.

commented

Sorry for that, the issue was that ez_setup.py was left out of the MANIFEST file. This is fixed now. Could you try again and tell me if it worked ?

Works now. Thanks!

commented

Happy bioprinting!

Thanks!