0

I'm trying to download an application from Github that runs on python. However, I am a complete newbie and falling at the first hurdle. The first step to install says

$ pip install git+https://github.com/abey79/vsketch#egg=vsketch
$ pip install git+https://github.com/marceloprates/prettymaps.git

however when I try this is wont recognise this all I get is errors. Am I missing a step or typing this in the wrong place?

Shinra tensei
  • 1,283
  • 9
  • 21

1 Answers1

0

Try

git clone https://github.com/abey79/vsketch#egg=vsketch

Then just run the setup.py from that directory, or the app.py whatever the startup file is. It should written somewhere in the readme file (e.g. README.md) or somewhere else.

You start it as...

sudo python setup.py install

...when you are in the directory.

buhtz
  • 10,774
  • 18
  • 76
  • 149