PyMix icon indicating copy to clipboard operation
PyMix copied to clipboard

Install issue: FileNotFoundError: [Errno 2] No such file or directory: 'README.rst'

Open ghost opened this issue 7 years ago • 4 comments

If I am installing the library using pip3 I am getting:

$ sudo pip3 install pymix
[sudo] password for stefan: 
The directory '/home/stefan/.cache/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
The directory '/home/stefan/.cache/pip' or its parent directory is not owned by the current user and caching wheels has been disabled. check the permissions and owner of that directory. If executing pip with sudo, you may want sudo's -H flag.
Collecting pymix
  Downloading pymix-0.8b.tar.gz (127kB)
    100% |████████████████████████████████| 133kB 1.4MB/s 
    Complete output from command python setup.py egg_info:
    Traceback (most recent call last):
      File "<string>", line 1, in <module>
      File "/tmp/pip-build-i1pd89q3/pymix/setup.py", line 11, in <module>
        with open('README.rst') as f:
    FileNotFoundError: [Errno 2] No such file or directory: 'README.rst'
    
    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in /tmp/pip-build-i1pd89q3/pymix/

ghost avatar Jul 08 '17 13:07 ghost

I'm having the same problem (Ubuntu 16.04.3):

Searching for pymix>=0.6
Reading https://pypi.python.org/simple/pymix/
Downloading https://pypi.python.org/packages/c6/6d/82ed0adfe49f6fc32041f9a701bf2c09bbb440d384c8f0b7f3efde58c0e7/pymix-0.8b.tar.gz#md5=ca2d1b8231c9883389b0513b0e19014d
Best match: pymix 0.8b0
Processing pymix-0.8b.tar.gz
Writing /tmp/easy_install-84q2YC/pymix-0.8b/setup.cfg
Running pymix-0.8b/setup.py -q bdist_egg --dist-dir /tmp/easy_install-84q2YC/pymix-0.8b/egg-dist-tmp-70ilv_
error: [Errno 2] No such file or directory: 'README.rst'

Any progress on fixing this issue?

nick-youngblut avatar Feb 04 '18 17:02 nick-youngblut

I have the same problem. I'm on windows.

ellisonch avatar Sep 13 '18 23:09 ellisonch

Same problem on Mac OS X

niemasd avatar May 27 '19 18:05 niemasd

Workaround:

git clone https://github.com/ajmendez/PyMix.git
pip install -r PyMix/requirements.txt
cd Pymix
pip install .

aakrosh avatar Jul 12 '19 13:07 aakrosh