Install pkg from Github to Python 'venv' under VSCode or Pycharm

  • Thread starter Swamp Thing
  • Start date
  • Tags
    install
  • #1
Swamp Thing
Insights Author
913
586
I would like to install the Python package kiwiclient.py from this github repo :
https://github.com/jks-prv/kiwiclient
into a venv using an IDE like PyCharm or VSCode.

Is there a way to do this directly without cloning the repo locally?
If not, what are the steps to clone and install into a project's venv?

I am not particularly proficient in either Python, PyCharm or git so I would appreciate a detailed guide with few prerequisite skills.
Platform: Raspberry Pi OS
 
Last edited:
Technology news on Phys.org
  • #2
This would be straightforward if you do it from the terminal. Activate the venv in the terminal first. Then run:
Code:
pip install git+https://github.com/jks-prv/kiwiclient

Source.
 
  • Like
Likes Swamp Thing and Greg Bernhardt
  • #4
Greg Bernhardt said:
Use pip3 if on Python3
Doesn't it automatically use pip3 if Python 2.7 is not installed?
 
  • Like
Likes Greg Bernhardt

Similar threads

  • Programming and Computer Science
Replies
15
Views
5K
  • Engineering and Comp Sci Homework Help
Replies
3
Views
509
Back
Top