Jump to content

[Python] Modules not found and lost of other errors.

WillLTT

what do packages do i need to install to run this repl.it in normal linux.

 

Please list all the packages i need for the script.

im using linux what pip packages do i install?

please list me a full list of commands below if you can :D

 

thanks for any help / advice ?

Link to comment
Share on other sites

Link to post
Share on other sites

repli.it is an IDE. So your not gonna install that :D 

As for that application, the dependencies should be in requirements.txt

 

So in this case: colorama and pythonping

You install those using pip. Example would be: pip install colorama

 

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, Dujith said:

--snip--

missunderstanding?

im moving from repl.it to Ubuntu Linux.

 

However when i try to run the script from repl.it on Ubuntu im missing lots of packages.

repl.it does it for me. so i dunno what packages i need.

Link to comment
Share on other sites

Link to post
Share on other sites

1 minute ago, WillLTT said:

repl.it does it for me. so i dunno what packages i need.

Thats the problem. I just explained in the 2nd part of my post what you have todo.

https://www.w3schools.com/python/python_pip.asp

 

Best to first understand what is happening and what u need todo. Like i said, requirements.txt is there for that exact reason. So you dont get errors for missing libs. 

You can either install them manualy or use the file itself: pip install -r requirements.txt

Link to comment
Share on other sites

Link to post
Share on other sites

The requirements file lists all the modules you need. In your case,

pip install --user colorama pythonping

or as @Dujith said:

pip install -r requirements.txt

 

Don't ask to ask, just ask... please 🤨

sudo chmod -R 000 /*

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×