Closed botanyhelp closed 3 years ago
UPDATE: I had to do the same exact thing for the Makefile in fastapi repo.
I would recommend creating a Python virtual environment and then sourcing that: python3 -m venv ~/.venv && source /.venv/bin/activate
Yes..I have seen in super-excellent videos exactly that advice which I did not do. I did it but now I get disk full error:
ERROR: Could not install packages due to an OSError: [Errno 28] No space left on device: '/home/ec2-user/.venv_Python-MLOps-Cookbook/lib64/python3.7/site-packages/pandas/tests/arrays/categorical/test_missing.py'
But I think I have notes from another super-excellent video on how to change that 10Gig cloud9 disk to a 20Gig disk.
I will work on that now.
I am trying to love cloud9 but its happening slowly.
You can close this Issue and know that I appreciate the super-efficient learning you kindly share!
I run these three commands in cloud9 and get an error on the make install step:
The error talks about python2.7 being deprecated. I have these aliases that come with cloud9:
..and so I am not sure where python2 is coming in. To fix, I edit the Makefile and run again:
During the vim editing I replace all 'python' with 'python3' and 'pip' with 'pip3' but that did not work because the package name for pip is still 'pip', not 'pip3', and so I have to leave the package name 'pip' as 'pip'. I would send you a pull request but it could be some kind of cloud9 misconfiguration on my end. I paste my slightly edited Makefile below: