Skip to content

Tag: python

How to manually clean up conda in my home directory?

I use Anaconda in my computer to handle my python versions and environments. The location of the Anaconda installation (and consequently the default location for newly created environments) is /opt/anaconda3/. I have two custom environments that I have created – envA and envB. envA is present in /opt/an…

kali linux pip install paramiko get ValueError

when I install paramiko with pip get error ValueError: Unable to determine SOCKS version from socks://127.0.0.1:1080/ This is the detailed error code I get: And I don’t what to do then I try to upgrade pip get error prompt code I use the command get the prompt code what should I do? Answer if you don&#8…

Kivy VM Buildozer Command Failed

I recently learned about kivy and tried to make a very simple little app just to test it. To try it out properly I used the kivy launcher but also felt compelled to try and compile it to an APK for my android phone. So I downloaded virtual box and installed linux mint on it. After installing things like java,

pip freeze doesn’t show opencv in Linux/Mint

I’ve installed OpenCV on Linux Mint and I can import it in python But when I want to see it in pip freeze, it doesn’t appear: Also, I tried to import it via PyCharm’s Project Interpreter. It wants to installation with pip. (pip install opencv-python and pip install cv2) When I installed that…

running python3 app at start up of Linux

I have the following script But the output is : the app has no problem running when I manually run it by typing python3 Server.py UPDATE: Clarification to the post I need the app to start running after the user pi logged in because it will need to get access to chrome Answer So after the previous comment was …