nanobox-io / nanobox-engine-python

Engine for running Python apps on Nanobox
https://nanobox.io
MIT License
12 stars 13 forks source link

requirements packages are installed but not accessible #12

Closed harobed closed 8 years ago

harobed commented 8 years ago

What I do :

$ git clone https://github.com/harobed/nanobox-python-sample.git
$ cd nanobox-python-sample
$ nanobox destroy
$ nanobox  update
$ nanobox update-images
$ nanobox dev

requirements are installed with success https://gist.github.com/harobed/67a3351fc4d880634d8f but :

[gonano@test_nanobox /code]$ ls
Boxfile  README.md  app.py  requirements.txt
[gonano@test_nanobox /code]$ python app.py
Traceback (most recent call last):
  File "app.py", line 1, in <module>
    from flask import Flask
ImportError: No module named flask
[gonano@test_nanobox /code]$ cat requirements.txt
flask
[gonano@test_nanobox /code]$ pip
bash: pip: command not found

Problems :

Best regards, Stephane