It looks like thereās an issue with the random library specified in your requirements file. I donāt think you need to specify random in requirements.txt since itās part of the standard library.
Amazing. I was able to run my app on streamlit now. I had to fix up my requirements and add some packages.txt. I was missing a few things. This is so good. I was struggling to do the same with Heroku. Great stuff Streamlit.
torch app run fine locally using streamlit but when deploying it
I face an error of importing torch library
ModuleNotFoundError: No module named ātorchā
Traceback:
File "/usr/local/lib/python3.7/site-packages/streamlit/script_runner.py", line 332, in _run_script
exec(code, module.__dict__)File "/app/ifacade_style/main.py", line 4, in <module>
import styleFile "/app/ifacade_style/style.py", line 8, in <module>
import torch
I am having this same problem. When I go to run my app I get the following error:
ModuleNotFoundError: No module named 'torch'
File "/usr/local/lib/python3.7/site-packages/streamlit/script_runner.py", line 332, in _run_script
exec(code, module.__dict__)
File "/app/test_application/nlp_app.py", line 3, in <module>
import torch
I have a requirements.txt file in the main branch of the repository. It includes the following:
As a side note, I am also having problems with the last requirement on that list (āen_core_web_smā) as well. If anyone has any experience successfully using that module from spacy I could use your input/advice. Thanks!