TensorFlow default

Hey you guys should add TensorFlow as default pip package because installing manually fills the container space up

Hey @JaZz I’m pretty sure this is already there: running pip show tensorflow or pip3 show tensorflow shows that it’s already in /usr/local/lib.

It looks like Tensorflow (and a few other helpful modules like numpy and scipy) are installed with Python 3.5, but not Python 3.7:

$ python3.5 -m pip show tensorflow
Name: tensorflow
Version: 1.14.0
...

but

$ python3.7 -m pip show tensorflow
WARNING: Package(s) not found: tensorflow

cheeky :blush:

/usr/local/lib/python3.7/dist-packages is empty :hushed:

Thanks for the free services for python. I would love to see more python3.7 dev dependencies to use the formidable Glitch VSCode extension more. For instance linters and formatters such as flake8, autopep, autopep8, black.

For anybody aiming to optimise the --user option, you can add --no-cache-dir:

glitch.json

{
  "install": "pip3 install --user --no-cache-dir -r requirements.txt",
}