简体   繁体   中英

Install GitHub Packages without PyPi

I'm trying to install this Python GoPro Remote Control API from GitHub. It's installation instructions say to use PyPi to install it. As I don't have PyPi, or anything like it as far as I know, installed on my computer, I was wondering if and how you could install something like this manually. I'd prefer the most if there were just a certain folder I have to put something to install it, but if I have to use Windows Command Line, Powershell, or Python Command Line, I'd be fine with that as well.

You do have pip (the command/module name for the program to interact with PyPi) installed, at least if you are using Python 3.4 + (released March 2014) or Python 2.7.9 + (released December 2014). And if not it is high time to update.

Just do python -m pip install goprocam in a commandline.

The -m flag tells python to load the module pip and the following arguments are passed along to it.

Depending on your setup you might have to specify the full path to the Python executable.

Have a look here for more ways to run pip from the Windows command line.

PyPi is the Python Package Index. It is an online repository of Python packages. It is not something you can download.

What the github page is saying is to download the package from PyPi.

This can be done using Pip. If you have Python, Pip comes with it. Otherwise download Python.

Then in windows command line enter

pip install goprocam

This command should automatically download the package from PyPi. You can also download the package from github, though it it will take a little more time. You need to download/install github, add it to your path and then call

pip install git+githttps://github.com/KonradIT/gopro-py-api.git

If you get a Pip is not recognized command you will need to add Pip to the environmental variables. This can easily be found online.

您不需要使用pypi,您可以将repo和cd克隆到其中,并使用goprocam模块

from goprocam import GoProCamera, constants

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM