You are not logged in.
Pages: 1
I tried installing Cygwin, everything worked at first, but when I tried using easy_install, I got this:
bash: easy_install: command not found
So, I tried using curl, and I got this:
OSError: [Errno 11] Resource temporarily unavailable
What am I supposed to do now? Is my computer the problem? Cause all I can use is a college computer that runs Windows 7. Any advice would be appreciated.
Offline
Have you checked out the most recent updates to INSTALL.md?
It looks like you don't have to use easy_install or pip to install pypng.
From INSTALL.md:
To build on Windows, use Cygwin. Use the default settings.
In the installer, select the following packages: make git python gettext
Then get the most recent version of rgbds. Extract the archive and put rgbasm.exe, rgblink.exe and rgbfix.exe in C:\cygwin\usr\local\bin.
In the Cygwin terminal:
git clone --recursive https://github.com/pret/pokered
cd pokered
make
Offline
I tried it just now. I got Pokered's files, but when I typed in make, I got this:
make: fork: Resource temporarily unavailable
What now?
Offline
Open Cygwin and write: python -V
It should give you something like this:
Python 2.7.10
Then instead of:
easy_install
Use:
easy_install-x.y
Replacing x and y for the first two version numbers, like this:
easy_install-2.7
Edit: You are typing "make" or "make red"?
Last edited by Montblanc (2016-07-05 02:07:29)
Offline
you do not need easy_install
that error is just cygwin acting up, if you run it again it should work
Offline
Pages: 1