pycli
pycli copied to clipboard
Access CLI From globally remote or local machine
Discussion about CLI feature
- If I wan to access it globally in my local machine then what should I do?
- and if I want to publish my won CLI globally then what should I do
You should definitely check out PyPi then https://packaging.python.org/tutorials/packaging-projects/
@Jighdan Can you specify it in few steps for such CLI's? I just want to be able to use the app globally in my local computer without publishing.
@tanmayc07 So if you follow the file structure from this repo, just:
$ cd YOUR-PROJECT
$ pip install -e .
Once you do that you should be able to call your project from anywhere in the command line.
Ohh thanks for the immediate reply @Jighdan 😁!!
@tanmayc07 Of course! Let me know how it goes :-)
Worked perfectly! @Jighdan