pip install
with Anaconda (conda env)$ pip install --upgrade google-cloud-bigquery
Then, it becomes as follows
FileNotFoundError: [Errno 2] No such file or directory: '/Applications/anaconda/envs/data_science3.6/lib/python3.6/site-packages/setuptools-27.2.0-py3.6.egg'
There was actually no file.
When I looked it up, the following came out.
https://github.com/ContinuumIO/anaconda-issues/issues/542
Reinstalling setuptools
will fix it. So I tried the following and it worked
conda install -c anaconda setuptools=27.2.0
Recommended Posts