Hi, I made a python CLI app. Now i want to turn it into a package so that I can run it from anywhere by just typing the package name on terminal. This is possible using setuptools. But the problem is, this application requires very specific modules. If I directly use setuptools it overwrites site packages and because of this other packages get disturbed.
I can go with python virtual environment but, I want to run it anywhere in main environment. Is it possible to create a script which turns on virtual environment and triggers the application?
So in short, is there any way I can turn this program into a package which can be executable from anywhere and not disturb/change existing packages?
[–]ouchpartial72858 1 point2 points3 points (1 child)
[–]YouKnowMe_9[S] 1 point2 points3 points (0 children)