openphilanthropy / unrestricted-adversarial-examples

Contest Proposal and infrastructure for the Unrestricted Adversarial Examples Challenge
Apache License 2.0
327 stars 62 forks source link

Unable to import module in Google Colab after installing #42

Closed sibyjackgrove closed 5 years ago

sibyjackgrove commented 5 years ago

I was trying to clone and install on a Google Colab instance following the instructions provided here. But I am unable to import the any of the modules. First I cloned the repository and changed to that directory.

!git clone https://github.com/google/unrestricted-adversarial-examples.git
%cd unrestricted-adversarial-examples

Then I used the pip install command.

!pip install bird-or-bicycle

The installation completed without any error.

Successfully installed Pillow-5.2.0 awscli-1.16.19 bird-or-bicycle-0.0.2 botocore-1.12.9 colorama-0.3.9 docutils-0.14 jmespath-0.9.3 rsa-3.4.2 s3transfer-0.1.13 torch-0.4.1 torchvision-0.2.1

However, when I try to import I get the 'module not found error'. Could anyone tell me what I am doing wrong? Is it even possible to install this module using Colab. I tried the same commands on my PC (without the IPython magics) and it works.

import bird_or_bicycle

ModuleNotFoundError: No module named 'bird_or_bicycle'

nottombrown commented 5 years ago

To get the new version, you'll need to run

!pip install -e bird-or-bicycle
sibyjackgrove commented 5 years ago

To get the new version, you'll need to run

!pip install -e bird-or-bicycle

I tried that too. I also installed the unrestricted-advex module. But still not able to import both of them

Running setup.py develop for bird-or-bicycle Successfully installed Pillow-5.2.0 awscli-1.16.19 bird-or-bicycle botocore-1.12.9 colorama-0.3.9 docutils-0.14 jmespath-0.9.3 rsa-3.4.2 s3transfer-0.1.13 torch-0.4.1 torchvision-0.2.1

Running setup.py develop for unrestricted-advex Successfully installed cleverhans-2.1.0 cython-0.28.5 foolbox-1.4.0 mnist-0.2.1 nose-1.3.7 pycodestyle-2.4.0 randomgen-1.15.0 terminaltables-3.1.0 unrestricted-advex

sibyjackgrove commented 5 years ago

Here is what I got when I did!pip freeze image

It seems the correct name of the module is not showing up.

nottombrown commented 5 years ago

Ah ok. I replicated the issue. It looks like you need to restart the colab kernel in order for the kernel to pick up the newly pip-installed package

image

nottombrown commented 5 years ago

Let me know if that fixes the issue for you!

sibyjackgrove commented 5 years ago

Let me know if that fixes the issue for you!

Yes, I restarted the kernel as you suggested. It works now and I am able to import the two modules. Thanks a lot for the help.

Mkarunniya commented 5 years ago

sir im unable to install utils File "", line 18 from python utils import label_map_util ^ SyntaxError: invalid syntax

carlini commented 5 years ago

That is not valid python syntax: you can't put a space between "python utils". Where did you get this code? Did you mean something different?

Is this issue related to this one, and if not, could you please raise a new issue?

Beautycou42 commented 5 years ago

When i run this in google colab ,i found this error?? would you please tell me how can i solve this error? ModuleNotFoundError Traceback (most recent call last)

in () 3 import matplotlib.pyplot as plt 4 import matplotlib.patches as patches ----> 5 import localization 6 7 # this gets all the connected regions and groups them together ModuleNotFoundError: No module named 'localization' --------------------------------------------------------------------------- NOTE: If your import is failing due to a missing package, you can manually install dependencies using either !pip or !apt. To view examples of installing some common dependencies, click the "Open Examples" button below.
sibyjackgrove commented 5 years ago

You can try to install the localization module using '!pip localization'.

harsh204016 commented 5 years ago

while install nst_utils I am getting error

**!pip install nst_utils**

Collecting nst_utils
  ERROR: Could not find a version that satisfies the requirement nst_utils (from versions: none)
ERROR: No matching distribution found for nst_utils
Chaima1404 commented 4 years ago

Hello, I need your help please , I'm working with google colab and I got an error: No module named 'reco_utils' ? I tried to install the package with pip or apt but still same error !

m-pektas commented 4 years ago

If You installed package, but you still get "No module ..." error, You can try to install package with "pip3".

harsh204016 commented 4 years ago

Hello, I need your help please , I'm working with google colab and I got an error: No module named 'reco_utils' ? I tried to install the package with pip or apt but still same error !

Try to restart the kernel and try with !pip or !pip3

modhvadiyac25 commented 3 years ago

having issue on importing google.colab

following are some error log statements :- Collecting google.colab Using cached https://files.pythonhosted.org/packages/70/9f/d3ec1275a089ec017f9c91af22ecd1e2fe738254b944e7a1f9528fcfacd0/google-colab-1.0.0.tar.gz Collecting google-auth~=1.4.0 (from google.colab) Using cached https://files.pythonhosted.org/packages/56/80/369a47c28ce7d9be6a6973338133d073864d8efbb62747e414c34a3a5f4f/google_auth-1.4.2-py2.py3-none-any.whl Requirement already satisfied: ipykernel~=4.6.0 in d:\software\python\lib\site-packages (from google.colab) (4.6.1) Requirement already satisfied: ipython~=5.5.0 in d:\software\python\lib\site-packages (from google.colab) (5.5.0) Requirement already satisfied: notebook~=5.2.0 in d:\software\python\lib\site-packages (from google.colab) (5.2.2) Collecting six~=1.12.0 (from google.colab) Using cached https://files.pythonhosted.org/packages/73/fb/00a976f728d0d1fecfe898238ce23f502a721c0ac0ecfedb80e0d88c64e9/six-1.12.0-py2.py3-none-any.whl Collecting pandas~=0.24.0 (from google.colab) Using cached https://files.pythonhosted.org/packages/b2/4c/b6f966ac91c5670ba4ef0b0b5613b5379e3c7abdfad4e7b89a87d73bae13/pandas-0.24.2.tar.gz Collecting portpicker~=1.2.0 (from google.colab) Using cached https://files.pythonhosted.org/packages/49/2c/a75ef568273036aa61319a554164e6031e31708106ea6ca10e17265e1703/portpicker-1.2.0.tar.gz Collecting requests~=2.21.0 (from google.colab) Using cached https://files.pythonhosted.org/packages/7d/e3/20f3d364d6c8e5d2353c72a67778eb189176f08e873c9900e10c0287b84b/requests-2.21.0-py2.py3-none-any.whl Requirement already satisfied: tornado~=4.5.0 in d:\software\python\lib\site-packages (from google.colab) (4.5.3) Requirement already satisfied: rsa>=3.1.4 in d:\software\python\lib\site-packages (from google-auth~=1.4.0->google.colab) (4.7.2) Requirement already satisfied: cachetools>=2.0.0 in d:\software\python\lib\site-packages (from google-auth~=1.4.0->google.colab) (4.2.2) Requirement already satisfied: pyasn1-modules>=0.2.1 in d:\software\python\lib\site-packages (from google-auth~=1.4.0->google.colab) (0.2.8) Requirement already satisfied: traitlets>=4.1.0 in d:\software\python\lib\site-packages (from ipykernel~=4.6.0->google.colab) (5.0.5) Requirement already satisfied: jupyter-client in d:\software\python\lib\site-packages (from ipykernel~=4.6.0->google.colab) (6.1.12) Requirement already satisfied: pickleshare in d:\software\python\lib\site-packages (from ipython~=5.5.0->google.colab) (0.7.5) Requirement already satisfied: pygments in d:\software\python\lib\site-packages (from ipython~=5.5.0->google.colab) (2.9.0) Requirement already satisfied: colorama; sys_platform == "win32" in c:\users\modhv\appdata\roaming\python\python38\site-packages (from ipython~=5.5.0->google.colab) (0.4.3) Requirement already satisfied: setuptools>=18.5 in d:\software\python\lib\site-packages (from ipython~=5.5.0->google.colab) (41.2.0) Requirement already satisfied: simplegeneric>0.8 in d:\software\python\lib\site-packages (from ipython~=5.5.0->google.colab) (0.8.1) Requirement already satisfied: decorator in d:\software\python\lib\site-packages (from ipython~=5.5.0->google.colab) (5.0.9) Requirement already satisfied: prompt-toolkit<2.0.0,>=1.0.4 in d:\software\python\lib\site-packages (from ipython~=5.5.0->google.colab) (1.0.18) Requirement already satisfied: ipython-genutils in d:\software\python\lib\site-packages (from notebook~=5.2.0->google.colab) (0.2.0) Requirement already satisfied: jupyter-core in d:\software\python\lib\site-packages (from notebook~=5.2.0->google.colab) (4.7.1) Requirement already satisfied: nbformat in d:\software\python\lib\site-packages (from notebook~=5.2.0->google.colab) (5.1.3) Requirement already satisfied: jinja2 in d:\software\python\lib\site-packages (from notebook~=5.2.0->google.colab) (3.0.1) Requirement already satisfied: nbconvert in d:\software\python\lib\site-packages (from notebook~=5.2.0->google.colab) (6.1.0) Requirement already satisfied: python-dateutil>=2.5.0 in d:\software\python\lib\site-packages (from pandas~=0.24.0->google.colab) (2.8.1) Requirement already satisfied: pytz>=2011k in d:\software\python\lib\site-packages (from pandas~=0.24.0->google.colab) (2019.3) Requirement already satisfied: numpy>=1.12.0 in d:\software\python\lib\site-packages (from pandas~=0.24.0->google.colab) (1.21.0) Requirement already satisfied: certifi>=2017.4.17 in d:\software\python\lib\site-packages (from requests~=2.21.0->google.colab) (2021.5.30) Collecting idna<2.9,>=2.5 (from requests~=2.21.0->google.colab) Using cached https://files.pythonhosted.org/packages/14/2c/cd551d81dbe15200be1cf41cd03869a46fe7226e7450af7a6545bfc474c9/idna-2.8-py2.py3-none-any.whl Collecting chardet<3.1.0,>=3.0.2 (from requests~=2.21.0->google.colab) Using cached https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl Collecting urllib3<1.25,>=1.21.1 (from requests~=2.21.0->google.colab) Using cached https://files.pythonhosted.org/packages/01/11/525b02e4acc0c747de8b6ccdab376331597c569c42ea66ab0a1dbd36eca2/urllib3-1.24.3-py2.py3-none-any.whl Requirement already satisfied: pyasn1>=0.1.3 in d:\software\python\lib\site-packages (from rsa>=3.1.4->google-auth~=1.4.0->google.colab) (0.4.8) Requirement already satisfied: pyzmq>=13 in d:\software\python\lib\site-packages (from jupyter-client->ipykernel~=4.6.0->google.colab) (22.1.0) Requirement already satisfied: wcwidth in d:\software\python\lib\site-packages (from prompt-toolkit<2.0.0,>=1.0.4->ipython~=5.5.0->google.colab) (0.2.5) Requirement already satisfied: pywin32>=1.0; sys_platform == "win32" in d:\software\python\lib\site-packages (from jupyter-core->notebook~=5.2.0->google.colab) (301)Requirement already satisfied: jsonschema!=2.5.0,>=2.4 in d:\software\python\lib\site-packages (from nbformat->notebook~=5.2.0->google.colab) (3.2.0) Requirement already satisfied: MarkupSafe>=2.0 in d:\software\python\lib\site-packages (from jinja2->notebook~=5.2.0->google.colab) (2.0.1) Requirement already satisfied: entrypoints>=0.2.2 in d:\software\python\lib\site-packages (from nbconvert->notebook~=5.2.0->google.colab) (0.3) Requirement already satisfied: testpath in d:\software\python\lib\site-packages (from nbconvert->notebook~=5.2.0->google.colab) (0.5.0) Requirement already satisfied: mistune<2,>=0.8.1 in d:\software\python\lib\site-packages (from nbconvert->notebook~=5.2.0->google.colab) (0.8.4) Requirement already satisfied: defusedxml in d:\software\python\lib\site-packages (from nbconvert->notebook~=5.2.0->google.colab) (0.7.1) Requirement already satisfied: bleach in d:\software\python\lib\site-packages (from nbconvert->notebook~=5.2.0->google.colab) (3.3.1) Requirement already satisfied: pandocfilters>=1.4.1 in d:\software\python\lib\site-packages (from nbconvert->notebook~=5.2.0->google.colab) (1.4.3) Requirement already satisfied: nbclient<0.6.0,>=0.5.0 in d:\software\python\lib\site-packages (from nbconvert->notebook~=5.2.0->google.colab) (0.5.3) Requirement already satisfied: jupyterlab-pygments in d:\software\python\lib\site-packages (from nbconvert->notebook~=5.2.0->google.colab) (0.1.2) Requirement already satisfied: attrs>=17.4.0 in d:\software\python\lib\site-packages (from jsonschema!=2.5.0,>=2.4->nbformat->notebook~=5.2.0->google.colab) (20.2.0)Requirement already satisfied: pyrsistent>=0.14.0 in d:\software\python\lib\site-packages (from jsonschema!=2.5.0,>=2.4->nbformat->notebook~=5.2.0->google.colab) (0.18.0) Requirement already satisfied: packaging in d:\software\python\lib\site-packages (from bleach->nbconvert->notebook~=5.2.0->google.colab) (20.4) Requirement already satisfied: webencodings in d:\software\python\lib\site-packages (from bleach->nbconvert->notebook~=5.2.0->google.colab) (0.5.1) Requirement already satisfied: nest-asyncio in d:\software\python\lib\site-packages (from nbclient<0.6.0,>=0.5.0->nbconvert->notebook~=5.2.0->google.colab) (1.5.1)
Requirement already satisfied: async-generator in d:\software\python\lib\site-packages (from nbclient<0.6.0,>=0.5.0->nbconvert->notebook~=5.2.0->google.colab) (1.10)Requirement already satisfied: pyparsing>=2.0.2 in d:\software\python\lib\site-packages (from packaging->bleach->nbconvert->notebook~=5.2.0->google.colab) (2.4.7) ERROR: google-api-python-client 2.7.0 has requirement google-auth<2dev,>=1.16.0, but you'll have google-auth 1.4.2 which is incompatible. ERROR: google-api-python-client 2.7.0 has requirement six<2dev,>=1.13.0, but you'll have six 1.12.0 which is incompatible. ERROR: google-api-core 1.31.0 has requirement google-auth<2.0dev,>=1.25.0, but you'll have google-auth 1.4.2 which is incompatible. ERROR: google-api-core 1.31.0 has requirement six>=1.13.0, but you'll have six 1.12.0 which is incompatible. Installing collected packages: six, google-auth, pandas, portpicker, idna, chardet, urllib3, requests, google.colab Found existing installation: six 1.16.0 Uninstalling six-1.16.0: Successfully uninstalled six-1.16.0 Found existing installation: google-auth 1.33.0 Uninstalling google-auth-1.33.0: Successfully uninstalled google-auth-1.33.0 Found existing installation: pandas 1.3.0 Uninstalling pandas-1.3.0: Successfully uninstalled pandas-1.3.0 Running setup.py install for pandas ... error ERROR: Command errored out with exit status 1: command: 'd:\software\python\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\modhv\AppData\Local\Temp\pip-install-rpxshz84\pandas\setup.py'"'"'; file='"'"'C:\Users\modhv\AppData\Local\Temp\pip-install-rpxshz84\pandas\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record 'C:\Users\modhv\AppData\Local\Temp\pip-record-ovsi0ksh\install-record.txt' --single-version-externally-managed --compile cwd: C:\Users\modhv\AppData\Local\Temp\pip-install-rpxshz84\pandas\ Complete output (841 lines): running install running build running build_py creating build creating build\lib.win-amd64-3.8 creating build\lib.win-amd64-3.8\pandas copying pandas\conftest.py -> build\lib.win-amd64-3.8\pandas copying pandas\testing.py -> build\lib.win-amd64-3.8\pandas copying pandas_version.py -> build\lib.win-amd64-3.8\pandas copying pandas__init__.py -> build\lib.win-amd64-3.8\pandas creating build\lib.win-amd64-3.8\pandas\api copying pandas\api__init__.py -> build\lib.win-amd64-3.8\pandas\api creating build\lib.win-amd64-3.8\pandas\arrays copying pandas\arrays__init__.py -> build\lib.win-amd64-3.8\pandas\arrays creating build\lib.win-amd64-3.8\pandas\compat copying pandas\compat\chainmap.py -> build\lib.win-amd64-3.8\pandas\compat copying pandas\compat\chainmap_impl.py -> build\lib.win-amd64-3.8\pandas\compat copying pandas\compat\pickle_compat.py -> build\lib.win-amd64-3.8\pandas\compat copying pandas\compat__init__.py -> build\lib.win-amd64-3.8\pandas\compat creating build\lib.win-amd64-3.8\pandas\core copying pandas\core\accessor.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\algorithms.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\api.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\apply.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\base.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\categorical.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\common.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\config.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\config_init.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\frame.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\generic.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\index.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\indexing.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\missing.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\nanops.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\ops.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\panel.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\resample.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\series.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\sorting.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\strings.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core\window.py -> build\lib.win-amd64-3.8\pandas\core copying pandas\core__init__.py -> build\lib.win-amd64-3.8\pandas\core creating build\lib.win-amd64-3.8\pandas\errors copying pandas\errors__init__.py -> build\lib.win-amd64-3.8\pandas\errors creating build\lib.win-amd64-3.8\pandas\io copying pandas\io\api.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\clipboards.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\common.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\date_converters.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\excel.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\feather_format.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\gbq.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\gcs.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\html.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\packers.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\parquet.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\parsers.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\pickle.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\pytables.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\s3.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\sql.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io\stata.py -> build\lib.win-amd64-3.8\pandas\io copying pandas\io__init__.py -> build\lib.win-amd64-3.8\pandas\io creating build\lib.win-amd64-3.8\pandas\plotting copying pandas\plotting_compat.py -> build\lib.win-amd64-3.8\pandas\plotting copying pandas\plotting_converter.py -> build\lib.win-amd64-3.8\pandas\plotting copying pandas\plotting_core.py -> build\lib.win-amd64-3.8\pandas\plotting copying pandas\plotting_misc.py -> build\lib.win-amd64-3.8\pandas\plotting copying pandas\plotting_style.py -> build\lib.win-amd64-3.8\pandas\plotting copying pandas\plotting_timeseries.py -> build\lib.win-amd64-3.8\pandas\plotting copying pandas\plotting_tools.py -> build\lib.win-amd64-3.8\pandas\plotting copying pandas\plotting__init__.py -> build\lib.win-amd64-3.8\pandas\plotting creating build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_algos.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_base.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_common.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_compat.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_config.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_downstream.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_errors.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_expressions.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_join.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_lib.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_multilevel.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_nanops.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_panel.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_register_accessor.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_sorting.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_strings.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_take.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests\test_window.py -> build\lib.win-amd64-3.8\pandas\tests copying pandas\tests__init__.py -> build\lib.win-amd64-3.8\pandas\tests creating build\lib.win-amd64-3.8\pandas\tseries copying pandas\tseries\api.py -> build\lib.win-amd64-3.8\pandas\tseries copying pandas\tseries\converter.py -> build\lib.win-amd64-3.8\pandas\tseries copying pandas\tseries\frequencies.py -> build\lib.win-amd64-3.8\pandas\tseries copying pandas\tseries\holiday.py -> build\lib.win-amd64-3.8\pandas\tseries copying pandas\tseries\offsets.py -> build\lib.win-amd64-3.8\pandas\tseries copying pandas\tseries\plotting.py -> build\lib.win-amd64-3.8\pandas\tseries copying pandas\tseries__init__.py -> build\lib.win-amd64-3.8\pandas\tseries creating build\lib.win-amd64-3.8\pandas\util copying pandas\util\testing.py -> build\lib.win-amd64-3.8\pandas\util copying pandas\util_decorators.py -> build\lib.win-amd64-3.8\pandas\util copying pandas\util_depr_module.py -> build\lib.win-amd64-3.8\pandas\util copying pandas\util_doctools.py -> build\lib.win-amd64-3.8\pandas\util copying pandas\util_exceptions.py -> build\lib.win-amd64-3.8\pandas\util copying pandas\util_print_versions.py -> build\lib.win-amd64-3.8\pandas\util copying pandas\util_tester.py -> build\lib.win-amd64-3.8\pandas\util copying pandas\util_testdecorators.py -> build\lib.win-amd64-3.8\pandas\util copying pandas\util_validators.py -> build\lib.win-amd64-3.8\pandas\util copying pandas\util__init.py -> build\lib.win-amd64-3.8\pandas\util creating build\lib.win-amd64-3.8\pandas_libs copying pandas_libs__init__.py -> build\lib.win-amd64-3.8\pandas_libs creating build\lib.win-amd64-3.8\pandas\api\extensions copying pandas\api\extensions\init.py -> build\lib.win-amd64-3.8\pandas\api\extensions creating build\lib.win-amd64-3.8\pandas\api\types copying pandas\api\types\init.py -> build\lib.win-amd64-3.8\pandas\api\types creating build\lib.win-amd64-3.8\pandas\compat\numpy copying pandas\compat\numpy\function.py -> build\lib.win-amd64-3.8\pandas\compat\numpy copying pandas\compat\numpy\init__.py -> build\lib.win-amd64-3.8\pandas\compat\numpy creating build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\array.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\base.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\categorical.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\datetimelike.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\datetimes.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\integer.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\interval.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\numpy_.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\period.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\sparse.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays\timedeltas.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays_ranges.py -> build\lib.win-amd64-3.8\pandas\core\arrays copying pandas\core\arrays__init__.py -> build\lib.win-amd64-3.8\pandas\core\arrays creating build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\align.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\api.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\check.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\common.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\engines.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\eval.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\expr.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\expressions.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\ops.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\pytables.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation\scope.py -> build\lib.win-amd64-3.8\pandas\core\computation copying pandas\core\computation__init__.py -> build\lib.win-amd64-3.8\pandas\core\computation creating build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes\api.py -> build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes\base.py -> build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes\cast.py -> build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes\common.py -> build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes\concat.py -> build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes\dtypes.py -> build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes\generic.py -> build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes\inference.py -> build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes\missing.py -> build\lib.win-amd64-3.8\pandas\core\dtypes copying pandas\core\dtypes__init__.py -> build\lib.win-amd64-3.8\pandas\core\dtypes creating build\lib.win-amd64-3.8\pandas\core\groupby copying pandas\core\groupby\base.py -> build\lib.win-amd64-3.8\pandas\core\groupby copying pandas\core\groupby\categorical.py -> build\lib.win-amd64-3.8\pandas\core\groupby copying pandas\core\groupby\generic.py -> build\lib.win-amd64-3.8\pandas\core\groupby copying pandas\core\groupby\groupby.py -> build\lib.win-amd64-3.8\pandas\core\groupby copying pandas\core\groupby\grouper.py -> build\lib.win-amd64-3.8\pandas\core\groupby copying pandas\core\groupby\ops.py -> build\lib.win-amd64-3.8\pandas\core\groupby copying pandas\core\groupby__init__.py -> build\lib.win-amd64-3.8\pandas\core\groupby creating build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\accessors.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\api.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\base.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\category.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\datetimelike.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\datetimes.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\frozen.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\interval.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\multi.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\numeric.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\period.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\range.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes\timedeltas.py -> build\lib.win-amd64-3.8\pandas\core\indexes copying pandas\core\indexes__init__.py -> build\lib.win-amd64-3.8\pandas\core\indexes creating build\lib.win-amd64-3.8\pandas\core\internals copying pandas\core\internals\arrays.py -> build\lib.win-amd64-3.8\pandas\core\internals copying pandas\core\internals\blocks.py -> build\lib.win-amd64-3.8\pandas\core\internals copying pandas\core\internals\concat.py -> build\lib.win-amd64-3.8\pandas\core\internals copying pandas\core\internals\construction.py -> build\lib.win-amd64-3.8\pandas\core\internals copying pandas\core\internals\managers.py -> build\lib.win-amd64-3.8\pandas\core\internals copying pandas\core\internals__init__.py -> build\lib.win-amd64-3.8\pandas\core\internals creating build\lib.win-amd64-3.8\pandas\core\reshape copying pandas\core\reshape\api.py -> build\lib.win-amd64-3.8\pandas\core\reshape copying pandas\core\reshape\concat.py -> build\lib.win-amd64-3.8\pandas\core\reshape copying pandas\core\reshape\melt.py -> build\lib.win-amd64-3.8\pandas\core\reshape copying pandas\core\reshape\merge.py -> build\lib.win-amd64-3.8\pandas\core\reshape copying pandas\core\reshape\pivot.py -> build\lib.win-amd64-3.8\pandas\core\reshape copying pandas\core\reshape\reshape.py -> build\lib.win-amd64-3.8\pandas\core\reshape copying pandas\core\reshape\tile.py -> build\lib.win-amd64-3.8\pandas\core\reshape copying pandas\core\reshape\util.py -> build\lib.win-amd64-3.8\pandas\core\reshape copying pandas\core\reshape__init__.py -> build\lib.win-amd64-3.8\pandas\core\reshape creating build\lib.win-amd64-3.8\pandas\core\sparse copying pandas\core\sparse\api.py -> build\lib.win-amd64-3.8\pandas\core\sparse copying pandas\core\sparse\frame.py -> build\lib.win-amd64-3.8\pandas\core\sparse copying pandas\core\sparse\scipy_sparse.py -> build\lib.win-amd64-3.8\pandas\core\sparse copying pandas\core\sparse\series.py -> build\lib.win-amd64-3.8\pandas\core\sparse copying pandas\core\sparse__init__.py -> build\lib.win-amd64-3.8\pandas\core\sparse creating build\lib.win-amd64-3.8\pandas\core\tools copying pandas\core\tools\datetimes.py -> build\lib.win-amd64-3.8\pandas\core\tools copying pandas\core\tools\numeric.py -> build\lib.win-amd64-3.8\pandas\core\tools copying pandas\core\tools\timedeltas.py -> build\lib.win-amd64-3.8\pandas\core\tools copying pandas\core\tools__init__.py -> build\lib.win-amd64-3.8\pandas\core\tools creating build\lib.win-amd64-3.8\pandas\core\util copying pandas\core\util\hashing.py -> build\lib.win-amd64-3.8\pandas\core\util copying pandas\core\util__init__.py -> build\lib.win-amd64-3.8\pandas\core\util creating build\lib.win-amd64-3.8\pandas\io\clipboard copying pandas\io\clipboard\clipboards.py -> build\lib.win-amd64-3.8\pandas\io\clipboard copying pandas\io\clipboard\exceptions.py -> build\lib.win-amd64-3.8\pandas\io\clipboard copying pandas\io\clipboard\windows.py -> build\lib.win-amd64-3.8\pandas\io\clipboard copying pandas\io\clipboard__init__.py -> build\lib.win-amd64-3.8\pandas\io\clipboard creating build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\console.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\css.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\csvs.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\excel.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\format.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\html.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\latex.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\printing.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\style.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats\terminal.py -> build\lib.win-amd64-3.8\pandas\io\formats copying pandas\io\formats__init__.py -> build\lib.win-amd64-3.8\pandas\io\formats creating build\lib.win-amd64-3.8\pandas\io\json copying pandas\io\json\json.py -> build\lib.win-amd64-3.8\pandas\io\json copying pandas\io\json\normalize.py -> build\lib.win-amd64-3.8\pandas\io\json copying pandas\io\json\table_schema.py -> build\lib.win-amd64-3.8\pandas\io\json copying pandas\io\json__init__.py -> build\lib.win-amd64-3.8\pandas\io\json creating build\lib.win-amd64-3.8\pandas\io\msgpack copying pandas\io\msgpack\exceptions.py -> build\lib.win-amd64-3.8\pandas\io\msgpack copying pandas\io\msgpack_version.py -> build\lib.win-amd64-3.8\pandas\io\msgpack copying pandas\io\msgpack__init__.py -> build\lib.win-amd64-3.8\pandas\io\msgpack creating build\lib.win-amd64-3.8\pandas\io\sas copying pandas\io\sas\sas7bdat.py -> build\lib.win-amd64-3.8\pandas\io\sas copying pandas\io\sas\sasreader.py -> build\lib.win-amd64-3.8\pandas\io\sas copying pandas\io\sas\sas_constants.py -> build\lib.win-amd64-3.8\pandas\io\sas copying pandas\io\sas\sas_xport.py -> build\lib.win-amd64-3.8\pandas\io\sas copying pandas\io\sas__init__.py -> build\lib.win-amd64-3.8\pandas\io\sas creating build\lib.win-amd64-3.8\pandas\tests\api copying pandas\tests\api\test_api.py -> build\lib.win-amd64-3.8\pandas\tests\api copying pandas\tests\api\test_types.py -> build\lib.win-amd64-3.8\pandas\tests\api copying pandas\tests\api__init__.py -> build\lib.win-amd64-3.8\pandas\tests\api creating build\lib.win-amd64-3.8\pandas\tests\arithmetic copying pandas\tests\arithmetic\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\arithmetic copying pandas\tests\arithmetic\test_datetime64.py -> build\lib.win-amd64-3.8\pandas\tests\arithmetic copying pandas\tests\arithmetic\test_numeric.py -> build\lib.win-amd64-3.8\pandas\tests\arithmetic copying pandas\tests\arithmetic\test_object.py -> build\lib.win-amd64-3.8\pandas\tests\arithmetic copying pandas\tests\arithmetic\test_period.py -> build\lib.win-amd64-3.8\pandas\tests\arithmetic copying pandas\tests\arithmetic\test_timedelta64.py -> build\lib.win-amd64-3.8\pandas\tests\arithmetic copying pandas\tests\arithmetic__init__.py -> build\lib.win-amd64-3.8\pandas\tests\arithmetic creating build\lib.win-amd64-3.8\pandas\tests\arrays copying pandas\tests\arrays\test_array.py -> build\lib.win-amd64-3.8\pandas\tests\arrays copying pandas\tests\arrays\test_datetimelike.py -> build\lib.win-amd64-3.8\pandas\tests\arrays copying pandas\tests\arrays\test_datetimes.py -> build\lib.win-amd64-3.8\pandas\tests\arrays copying pandas\tests\arrays\test_integer.py -> build\lib.win-amd64-3.8\pandas\tests\arrays copying pandas\tests\arrays\test_numpy.py -> build\lib.win-amd64-3.8\pandas\tests\arrays copying pandas\tests\arrays\test_period.py -> build\lib.win-amd64-3.8\pandas\tests\arrays copying pandas\tests\arrays\test_timedeltas.py -> build\lib.win-amd64-3.8\pandas\tests\arrays copying pandas\tests\arrays__init__.py -> build\lib.win-amd64-3.8\pandas\tests\arrays creating build\lib.win-amd64-3.8\pandas\tests\computation copying pandas\tests\computation\test_compat.py -> build\lib.win-amd64-3.8\pandas\tests\computation copying pandas\tests\computation\test_eval.py -> build\lib.win-amd64-3.8\pandas\tests\computation copying pandas\tests\computation__init__.py -> build\lib.win-amd64-3.8\pandas\tests\computation creating build\lib.win-amd64-3.8\pandas\tests\dtypes copying pandas\tests\dtypes\test_common.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes copying pandas\tests\dtypes\test_concat.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes copying pandas\tests\dtypes\test_dtypes.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes copying pandas\tests\dtypes\test_generic.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes copying pandas\tests\dtypes\test_inference.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes copying pandas\tests\dtypes\test_missing.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes copying pandas\tests\dtypes__init__.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes creating build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension\test_categorical.py -> build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension\test_common.py -> build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension\test_datetime.py -> build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension\test_external_block.py -> build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension\test_integer.py -> build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension\test_interval.py -> build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension\test_period.py -> build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension\test_sparse.py -> build\lib.win-amd64-3.8\pandas\tests\extension copying pandas\tests\extension__init__.py -> build\lib.win-amd64-3.8\pandas\tests\extension creating build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\common.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_alter_axes.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_analytics.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_api.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_apply.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_arithmetic.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_asof.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_axis_select_reindex.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_block_internals.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_combine_concat.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_constructors.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_convert_to.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_dtypes.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_duplicates.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_join.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_missing.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_mutate_columns.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_nonunique_indexes.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_operators.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_period.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_quantile.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_query_eval.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_rank.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_replace.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_repr_info.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_reshape.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_sorting.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_sort_values_level_as_str.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_subclass.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_timeseries.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_timezones.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_to_csv.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame\test_validate.py -> build\lib.win-amd64-3.8\pandas\tests\frame copying pandas\tests\frame__init__.py -> build\lib.win-amd64-3.8\pandas\tests\frame creating build\lib.win-amd64-3.8\pandas\tests\generic copying pandas\tests\generic\test_frame.py -> build\lib.win-amd64-3.8\pandas\tests\generic copying pandas\tests\generic\test_generic.py -> build\lib.win-amd64-3.8\pandas\tests\generic copying pandas\tests\generic\test_label_or_level_utils.py -> build\lib.win-amd64-3.8\pandas\tests\generic copying pandas\tests\generic\test_panel.py -> build\lib.win-amd64-3.8\pandas\tests\generic copying pandas\tests\generic\test_series.py -> build\lib.win-amd64-3.8\pandas\tests\generic copying pandas\tests\generic__init__.py -> build\lib.win-amd64-3.8\pandas\tests\generic creating build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_apply.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_bin_groupby.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_categorical.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_counting.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_filters.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_function.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_groupby.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_grouping.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_index_as_string.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_nth.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_rank.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_timegrouper.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_transform.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_value_counts.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby\test_whitelist.py -> build\lib.win-amd64-3.8\pandas\tests\groupby copying pandas\tests\groupby__init__.py -> build\lib.win-amd64-3.8\pandas\tests\groupby creating build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes\common.py -> build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes\datetimelike.py -> build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes\test_base.py -> build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes\test_category.py -> build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes\test_common.py -> build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes\test_frozen.py -> build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes\test_numeric.py -> build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes\test_range.py -> build\lib.win-amd64-3.8\pandas\tests\indexes copying pandas\tests\indexes__init__.py -> build\lib.win-amd64-3.8\pandas\tests\indexes creating build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\common.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_callable.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_categorical.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_chaining_and_caching.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_coercion.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_datetime.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_floats.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_iloc.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_indexing_engines.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_indexing_slow.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_ix.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_loc.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_panel.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_partial.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_scalar.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing\test_timedelta.py -> build\lib.win-amd64-3.8\pandas\tests\indexing copying pandas\tests\indexing__init__.py -> build\lib.win-amd64-3.8\pandas\tests\indexing creating build\lib.win-amd64-3.8\pandas\tests\internals copying pandas\tests\internals\test_internals.py -> build\lib.win-amd64-3.8\pandas\tests\internals copying pandas\tests\internals__init__.py -> build\lib.win-amd64-3.8\pandas\tests\internals creating build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\generate_legacy_storage_files.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_clipboard.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_common.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_compression.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_date_converters.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_excel.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_feather.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_gbq.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_gcs.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_html.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_packers.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_parquet.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_pickle.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_pytables.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_s3.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_sql.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io\test_stata.py -> build\lib.win-amd64-3.8\pandas\tests\io copying pandas\tests\io__init__.py -> build\lib.win-amd64-3.8\pandas\tests\io creating build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting\common.py -> build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting\test_boxplot_method.py -> build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting\test_converter.py -> build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting\test_datetimelike.py -> build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting\test_frame.py -> build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting\test_groupby.py -> build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting\test_hist_method.py -> build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting\test_misc.py -> build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting\test_series.py -> build\lib.win-amd64-3.8\pandas\tests\plotting copying pandas\tests\plotting__init__.py -> build\lib.win-amd64-3.8\pandas\tests\plotting creating build\lib.win-amd64-3.8\pandas\tests\reductions copying pandas\tests\reductions\test_reductions.py -> build\lib.win-amd64-3.8\pandas\tests\reductions copying pandas\tests\reductions\test_stat_reductions.py -> build\lib.win-amd64-3.8\pandas\tests\reductions copying pandas\tests\reductions__init__.py -> build\lib.win-amd64-3.8\pandas\tests\reductions creating build\lib.win-amd64-3.8\pandas\tests\resample copying pandas\tests\resample\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\resample copying pandas\tests\resample\test_base.py -> build\lib.win-amd64-3.8\pandas\tests\resample copying pandas\tests\resample\test_datetime_index.py -> build\lib.win-amd64-3.8\pandas\tests\resample copying pandas\tests\resample\test_period_index.py -> build\lib.win-amd64-3.8\pandas\tests\resample copying pandas\tests\resample\test_resampler_grouper.py -> build\lib.win-amd64-3.8\pandas\tests\resample copying pandas\tests\resample\test_resample_api.py -> build\lib.win-amd64-3.8\pandas\tests\resample copying pandas\tests\resample\test_timedelta.py -> build\lib.win-amd64-3.8\pandas\tests\resample copying pandas\tests\resample\test_time_grouper.py -> build\lib.win-amd64-3.8\pandas\tests\resample copying pandas\tests\resample__init__.py -> build\lib.win-amd64-3.8\pandas\tests\resample creating build\lib.win-amd64-3.8\pandas\tests\reshape copying pandas\tests\reshape\test_concat.py -> build\lib.win-amd64-3.8\pandas\tests\reshape copying pandas\tests\reshape\test_cut.py -> build\lib.win-amd64-3.8\pandas\tests\reshape copying pandas\tests\reshape\test_melt.py -> build\lib.win-amd64-3.8\pandas\tests\reshape copying pandas\tests\reshape\test_pivot.py -> build\lib.win-amd64-3.8\pandas\tests\reshape copying pandas\tests\reshape\test_qcut.py -> build\lib.win-amd64-3.8\pandas\tests\reshape copying pandas\tests\reshape\test_reshape.py -> build\lib.win-amd64-3.8\pandas\tests\reshape copying pandas\tests\reshape\test_union_categoricals.py -> build\lib.win-amd64-3.8\pandas\tests\reshape copying pandas\tests\reshape\test_util.py -> build\lib.win-amd64-3.8\pandas\tests\reshape copying pandas\tests\reshape__init__.py -> build\lib.win-amd64-3.8\pandas\tests\reshape creating build\lib.win-amd64-3.8\pandas\tests\scalar copying pandas\tests\scalar\test_nat.py -> build\lib.win-amd64-3.8\pandas\tests\scalar copying pandas\tests\scalar__init__.py -> build\lib.win-amd64-3.8\pandas\tests\scalar creating build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\common.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_alter_axes.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_analytics.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_api.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_apply.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_arithmetic.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_asof.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_block_internals.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_combine_concat.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_constructors.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_datetime_values.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_dtypes.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_duplicates.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_internals.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_io.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_missing.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_operators.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_period.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_quantile.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_rank.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_replace.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_repr.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_sorting.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_subclass.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_timeseries.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_timezones.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series\test_validate.py -> build\lib.win-amd64-3.8\pandas\tests\series copying pandas\tests\series__init__.py -> build\lib.win-amd64-3.8\pandas\tests\series creating build\lib.win-amd64-3.8\pandas\tests\sparse copying pandas\tests\sparse\common.py -> build\lib.win-amd64-3.8\pandas\tests\sparse copying pandas\tests\sparse\test_combine_concat.py -> build\lib.win-amd64-3.8\pandas\tests\sparse copying pandas\tests\sparse\test_format.py -> build\lib.win-amd64-3.8\pandas\tests\sparse copying pandas\tests\sparse\test_groupby.py -> build\lib.win-amd64-3.8\pandas\tests\sparse copying pandas\tests\sparse\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\sparse copying pandas\tests\sparse\test_pivot.py -> build\lib.win-amd64-3.8\pandas\tests\sparse copying pandas\tests\sparse\test_reshape.py -> build\lib.win-amd64-3.8\pandas\tests\sparse copying pandas\tests\sparse__init__.py -> build\lib.win-amd64-3.8\pandas\tests\sparse creating build\lib.win-amd64-3.8\pandas\tests\tools copying pandas\tests\tools\test_numeric.py -> build\lib.win-amd64-3.8\pandas\tests\tools copying pandas\tests\tools__init__.py -> build\lib.win-amd64-3.8\pandas\tests\tools creating build\lib.win-amd64-3.8\pandas\tests\tseries copying pandas\tests\tseries\test_frequencies.py -> build\lib.win-amd64-3.8\pandas\tests\tseries copying pandas\tests\tseries\test_holiday.py -> build\lib.win-amd64-3.8\pandas\tests\tseries copying pandas\tests\tseries__init__.py -> build\lib.win-amd64-3.8\pandas\tests\tseries creating build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_api.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_array_to_datetime.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_ccalendar.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_conversion.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_libfrequencies.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_liboffsets.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_normalize_date.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_parse_iso8601.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_parsing.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_period_asfreq.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_timedeltas.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs\test_timezones.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs copying pandas\tests\tslibs__init__.py -> build\lib.win-amd64-3.8\pandas\tests\tslibs creating build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_assert_almost_equal.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_assert_categorical_equal.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_assert_extension_array_equal.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_assert_frame_equal.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_assert_index_equal.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_assert_interval_array_equal.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_assert_numpy_array_equal.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_assert_series_equal.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_deprecate.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_deprecate_kwarg.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_hashing.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_locale.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_move.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_safe_import.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_util.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_validate_args.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_validate_args_and_kwargs.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util\test_validate_kwargs.py -> build\lib.win-amd64-3.8\pandas\tests\util copying pandas\tests\util__init__.py -> build\lib.win-amd64-3.8\pandas\tests\util creating build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\common.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_algos.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_analytics.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_api.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_constructors.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_dtypes.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_missing.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_operators.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_repr.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_sorting.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_subclass.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical\test_warnings.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical copying pandas\tests\arrays\categorical__init__.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\categorical creating build\lib.win-amd64-3.8\pandas\tests\arrays\interval copying pandas\tests\arrays\interval\test_interval.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\interval copying pandas\tests\arrays\interval\test_ops.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\interval copying pandas\tests\arrays\interval__init__.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\interval creating build\lib.win-amd64-3.8\pandas\tests\arrays\sparse copying pandas\tests\arrays\sparse\test_arithmetics.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\sparse copying pandas\tests\arrays\sparse\test_array.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\sparse copying pandas\tests\arrays\sparse\test_dtype.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\sparse copying pandas\tests\arrays\sparse\test_libsparse.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\sparse copying pandas\tests\arrays\sparse__init__.py -> build\lib.win-amd64-3.8\pandas\tests\arrays\sparse creating build\lib.win-amd64-3.8\pandas\tests\dtypes\cast copying pandas\tests\dtypes\cast\test_construct_from_scalar.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes\cast copying pandas\tests\dtypes\cast\test_construct_ndarray.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes\cast copying pandas\tests\dtypes\cast\test_construct_object_arr.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes\cast copying pandas\tests\dtypes\cast\test_convert_objects.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes\cast copying pandas\tests\dtypes\cast\test_downcast.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes\cast copying pandas\tests\dtypes\cast\test_find_common_type.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes\cast copying pandas\tests\dtypes\cast\test_infer_datetimelike.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes\cast copying pandas\tests\dtypes\cast\test_infer_dtype.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes\cast copying pandas\tests\dtypes\cast__init__.py -> build\lib.win-amd64-3.8\pandas\tests\dtypes\cast creating build\lib.win-amd64-3.8\pandas\tests\extension\arrow copying pandas\tests\extension\arrow\bool.py -> build\lib.win-amd64-3.8\pandas\tests\extension\arrow copying pandas\tests\extension\arrow\test_bool.py -> build\lib.win-amd64-3.8\pandas\tests\extension\arrow copying pandas\tests\extension\arrow__init__.py -> build\lib.win-amd64-3.8\pandas\tests\extension\arrow creating build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\base.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\casting.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\constructors.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\dtype.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\getitem.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\groupby.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\interface.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\io.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\methods.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\missing.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\ops.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\printing.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\reduce.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\reshaping.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base\setitem.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base copying pandas\tests\extension\base__init__.py -> build\lib.win-amd64-3.8\pandas\tests\extension\base creating build\lib.win-amd64-3.8\pandas\tests\extension\decimal copying pandas\tests\extension\decimal\array.py -> build\lib.win-amd64-3.8\pandas\tests\extension\decimal copying pandas\tests\extension\decimal\test_decimal.py -> build\lib.win-amd64-3.8\pandas\tests\extension\decimal copying pandas\tests\extension\decimal__init__.py -> build\lib.win-amd64-3.8\pandas\tests\extension\decimal creating build\lib.win-amd64-3.8\pandas\tests\extension\json copying pandas\tests\extension\json\array.py -> build\lib.win-amd64-3.8\pandas\tests\extension\json copying pandas\tests\extension\json\testjson.py -> build\lib.win-amd64-3.8\pandas\tests\extension\json copying pandas\tests\extension\json__init__.py -> build\lib.win-amd64-3.8\pandas\tests\extension\json creating build\lib.win-amd64-3.8\pandas\tests\extension\numpy copying pandas\tests\extension\numpy\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\extension\numpy copying pandas\tests\extension\numpy_\testnumpy.py -> build\lib.win-amd64-3.8\pandas\tests\extension\numpy copying pandas\tests\extension\numpy_\test_numpynested.py -> build\lib.win-amd64-3.8\pandas\tests\extension\numpy copying pandas\tests\extension\numpy__init__.py -> build\lib.win-amd64-3.8\pandas\tests\extension\numpy creating build\lib.win-amd64-3.8\pandas\tests\groupby\aggregate copying pandas\tests\groupby\aggregate\test_aggregate.py -> build\lib.win-amd64-3.8\pandas\tests\groupby\aggregate copying pandas\tests\groupby\aggregate\test_cython.py -> build\lib.win-amd64-3.8\pandas\tests\groupby\aggregate copying pandas\tests\groupby\aggregate\test_other.py -> build\lib.win-amd64-3.8\pandas\tests\groupby\aggregate copying pandas\tests\groupby\aggregate__init__.py -> build\lib.win-amd64-3.8\pandas\tests\groupby\aggregate creating build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_arithmetic.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_astype.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_construction.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_datetime.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_datetimelike.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_date_range.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_formats.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_misc.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_missing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_ops.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_partial_slicing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_scalar_compat.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_setops.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_timezones.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes\test_tools.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes copying pandas\tests\indexes\datetimes__init__.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\datetimes creating build\lib.win-amd64-3.8\pandas\tests\indexes\interval copying pandas\tests\indexes\interval\test_astype.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\interval copying pandas\tests\indexes\interval\test_construction.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\interval copying pandas\tests\indexes\interval\test_interval.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\interval copying pandas\tests\indexes\interval\test_interval_new.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\interval copying pandas\tests\indexes\interval\test_interval_range.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\interval copying pandas\tests\indexes\interval\test_interval_tree.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\interval copying pandas\tests\indexes\interval__init__.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\interval creating build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_analytics.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_astype.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_compat.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_constructor.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_contains.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_conversion.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_copy.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_drop.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_duplicates.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_equivalence.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_format.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_get_set.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_integrity.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_join.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_missing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_monotonic.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_names.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_partial_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_reindex.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_reshape.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_set_ops.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi\test_sorting.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi copying pandas\tests\indexes\multi__init__.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\multi creating build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_arithmetic.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_asfreq.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_astype.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_construction.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_formats.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_ops.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_partial_slicing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_period.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_period_range.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_scalar_compat.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_setops.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period\test_tools.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period copying pandas\tests\indexes\period__init.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\period creating build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_arithmetic.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_astype.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_construction.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_formats.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_ops.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_partial_slicing.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_scalar_compat.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_setops.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_timedelta.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_timedelta_range.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas\test_tools.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas copying pandas\tests\indexes\timedeltas__init.py -> build\lib.win-amd64-3.8\pandas\tests\indexes\timedeltas creating build\lib.win-amd64-3.8\pandas\tests\indexing\interval copying pandas\tests\indexing\interval\test_interval.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\interval copying pandas\tests\indexing\interval\test_interval_new.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\interval copying pandas\tests\indexing\interval__init.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\interval creating build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_chaining_and_caching.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_datetime.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_getitem.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_iloc.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_indexing_slow.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_ix.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_loc.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_multiindex.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_panel.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_partial.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_setitem.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_set_ops.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_slice.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_sorted.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex\test_xs.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex copying pandas\tests\indexing\multiindex__init.py -> build\lib.win-amd64-3.8\pandas\tests\indexing\multiindex creating build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_console.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_css.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_eng_formatting.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_format.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_printing.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_style.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_to_csv.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_to_excel.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_to_html.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats\test_to_latex.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats copying pandas\tests\io\formats__init.py -> build\lib.win-amd64-3.8\pandas\tests\io\formats creating build\lib.win-amd64-3.8\pandas\tests\io\json copying pandas\tests\io\json\test_compression.py -> build\lib.win-amd64-3.8\pandas\tests\io\json copying pandas\tests\io\json\test_json_table_schema.py -> build\lib.win-amd64-3.8\pandas\tests\io\json copying pandas\tests\io\json\test_normalize.py -> build\lib.win-amd64-3.8\pandas\tests\io\json copying pandas\tests\io\json\test_pandas.py -> build\lib.win-amd64-3.8\pandas\tests\io\json copying pandas\tests\io\json\test_readlines.py -> build\lib.win-amd64-3.8\pandas\tests\io\json copying pandas\tests\io\json\test_ujson.py -> build\lib.win-amd64-3.8\pandas\tests\io\json copying pandas\tests\io\json__init.py -> build\lib.win-amd64-3.8\pandas\tests\io\json creating build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\common.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_buffer.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_case.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_except.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_extension.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_format.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_limits.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_newspec.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_obj.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_pack.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_read_size.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_seq.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_sequnpack.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_subtype.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_unpack.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack\test_unpack_raw.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack copying pandas\tests\io\msgpack__init.py -> build\lib.win-amd64-3.8\pandas\tests\io\msgpack creating build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_comment.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_common.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_compression.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_converters.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_c_parser_only.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_dialect.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_dtypes.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_header.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_index_col.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_mangle_dupes.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_multi_thread.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_na_values.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_network.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_parse_dates.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_python_parser_only.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_quoting.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_read_fwf.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_skiprows.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_textreader.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_unsupported.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser\test_usecols.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser copying pandas\tests\io\parser__init__.py -> build\lib.win-amd64-3.8\pandas\tests\io\parser creating build\lib.win-amd64-3.8\pandas\tests\io\sas copying pandas\tests\io\sas\test_sas.py -> build\lib.win-amd64-3.8\pandas\tests\io\sas copying pandas\tests\io\sas\test_sas7bdat.py -> build\lib.win-amd64-3.8\pandas\tests\io\sas copying pandas\tests\io\sas\test_xport.py -> build\lib.win-amd64-3.8\pandas\tests\io\sas copying pandas\tests\io\sas\init__.py -> build\lib.win-amd64-3.8\pandas\tests\io\sas creating build\lib.win-amd64-3.8\pandas\tests\reshape\merge copying pandas\tests\reshape\merge\test_join.py -> build\lib.win-amd64-3.8\pandas\tests\reshape\merge copying pandas\tests\reshape\merge\test_merge.py -> build\lib.win-amd64-3.8\pandas\tests\reshape\merge copying pandas\tests\reshape\merge\test_merge_asof.py -> build\lib.win-amd64-3.8\pandas\tests\reshape\merge copying pandas\tests\reshape\merge\test_merge_index_as_string.py -> build\lib.win-amd64-3.8\pandas\tests\reshape\merge copying pandas\tests\reshape\merge\test_merge_ordered.py -> build\lib.win-amd64-3.8\pandas\tests\reshape\merge copying pandas\tests\reshape\merge\test_multi.py -> build\lib.win-amd64-3.8\pandas\tests\reshape\merge copying pandas\tests\reshape\merge\init.py -> build\lib.win-amd64-3.8\pandas\tests\reshape\merge creating build\lib.win-amd64-3.8\pandas\tests\scalar\interval copying pandas\tests\scalar\interval\test_interval.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\interval copying pandas\tests\scalar\interval\test_ops.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\interval copying pandas\tests\scalar\interval\init.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\interval creating build\lib.win-amd64-3.8\pandas\tests\scalar\period copying pandas\tests\scalar\period\test_asfreq.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\period copying pandas\tests\scalar\period\test_period.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\period copying pandas\tests\scalar\period\init.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\period creating build\lib.win-amd64-3.8\pandas\tests\scalar\timedelta copying pandas\tests\scalar\timedelta\test_arithmetic.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timedelta copying pandas\tests\scalar\timedelta\test_construction.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timedelta copying pandas\tests\scalar\timedelta\test_formats.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timedelta copying pandas\tests\scalar\timedelta\test_timedelta.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timedelta copying pandas\tests\scalar\timedelta\init__.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timedelta creating build\lib.win-amd64-3.8\pandas\tests\scalar\timestamp copying pandas\tests\scalar\timestamp\test_arithmetic.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timestamp copying pandas\tests\scalar\timestamp\test_comparisons.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timestamp copying pandas\tests\scalar\timestamp\test_rendering.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timestamp copying pandas\tests\scalar\timestamp\test_timestamp.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timestamp copying pandas\tests\scalar\timestamp\test_timezones.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timestamp copying pandas\tests\scalar\timestamp\test_unary_ops.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timestamp copying pandas\tests\scalar\timestamp\init__.py -> build\lib.win-amd64-3.8\pandas\tests\scalar\timestamp creating build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\test_alter_index.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\test_boolean.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\test_callable.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\test_datetime.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\test_iloc.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\test_loc.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\test_numeric.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing copying pandas\tests\series\indexing\init__.py -> build\lib.win-amd64-3.8\pandas\tests\series\indexing creating build\lib.win-amd64-3.8\pandas\tests\sparse\frame copying pandas\tests\sparse\frame\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\frame copying pandas\tests\sparse\frame\test_analytics.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\frame copying pandas\tests\sparse\frame\test_apply.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\frame copying pandas\tests\sparse\frame\test_frame.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\frame copying pandas\tests\sparse\frame\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\frame copying pandas\tests\sparse\frame\test_to_csv.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\frame copying pandas\tests\sparse\frame\test_to_from_scipy.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\frame copying pandas\tests\sparse\frame\init.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\frame creating build\lib.win-amd64-3.8\pandas\tests\sparse\series copying pandas\tests\sparse\series\test_indexing.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\series copying pandas\tests\sparse\series\test_series.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\series copying pandas\tests\sparse\series\init__.py -> build\lib.win-amd64-3.8\pandas\tests\sparse\series creating build\lib.win-amd64-3.8\pandas\tests\tseries\offsets copying pandas\tests\tseries\offsets\common.py -> build\lib.win-amd64-3.8\pandas\tests\tseries\offsets copying pandas\tests\tseries\offsets\conftest.py -> build\lib.win-amd64-3.8\pandas\tests\tseries\offsets copying pandas\tests\tseries\offsets\test_fiscal.py -> build\lib.win-amd64-3.8\pandas\tests\tseries\offsets copying pandas\tests\tseries\offsets\test_offsets.py -> build\lib.win-amd64-3.8\pandas\tests\tseries\offsets copying pandas\tests\tseries\offsets\test_offsets_properties.py -> build\lib.win-amd64-3.8\pandas\tests\tseries\offsets copying pandas\tests\tseries\offsets\test_ticks.py -> build\lib.win-amd64-3.8\pandas\tests\tseries\offsets copying pandas\tests\tseries\offsets\test_yqm_offsets.py -> build\lib.win-amd64-3.8\pandas\tests\tseries\offsets copying pandas\tests\tseries\offsets\init__.py -> build\lib.win-amd64-3.8\pandas\tests\tseries\offsets creating build\lib.win-amd64-3.8\pandas_libs\tslibs copying pandas_libs\tslibs\init__.py -> build\lib.win-amd64-3.8\pandas_libs\tslibs creating build\lib.win-amd64-3.8\pandas\io\formats\templates copying pandas\io\formats\templates\html.tpl -> build\lib.win-amd64-3.8\pandas\io\formats\templates UPDATING build\lib.win-amd64-3.8\pandas/_version.py set build\lib.win-amd64-3.8\pandas/_version.py to '0.24.2' running build_ext building 'pandas._libs.algos' extension error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/

Rolling back uninstall of pandas Moving to d:\software\python\lib\site-packages\pandas-1.3.0.dist-info\ from D:\Software\python\Lib\site-packages\~andas-1.3.0.dist-info Moving to d:\software\python\lib\site-packages\pandas\ from D:\Software\python\Lib\site-packages\~andas ERROR: Command errored out with exit status 1: 'd:\software\python\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\modhv\AppData\Local\Temp\pip-install-rpxshz84\pandas\setup.py'"'"'; file='"'"'C:\Users\modhv\AppData\Local\Temp\pip-install-rpxshz84\pandas\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(file);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, file, '"'"'exec'"'"'))' install --record 'C:\Users\modhv\AppData\Local\Temp\pip-record-ovsi0ksh\install-record.txt' --single-version-externally-managed --compile Check the logs for full command output.WARNING: You are using pip version 19.2.3, however version 21.1.3 is available. You should consider upgrading via the 'python -m pip install --upgrade pip' command.

nadia-bashir commented 2 years ago

import ffmpeg ModuleNotFoundError: No module named 'ffmpeg 1 '

nadia-bashir commented 2 years ago

cannot found how to debug it, i'm using pycharm. help me there.

harsh204016 commented 2 years ago

What is the exact issue you are having , are you not able to import packages in pycharm or google colab ? @nadia-bashir

HelloJocelynLu commented 2 years ago

I believed that I got the same error: I tried to use transformers. And have installed it via another package (who use transformers as one of dependencies). I got "ModuleNotFoundError". I even tried to do !pip/!pip3 again:

!pip3 install transformers

and got:

Requirement already satisfied: transformers in /usr/local/lib/python3.9/site-packages/transformers-4.10.2-py3.9.egg (4.10.2)
Requirement already satisfied: filelock in /usr/local/lib/python3.9/site-packages/filelock-3.3.1-py3.9.egg (from transformers) (3.3.1)
Requirement already satisfied: huggingface-hub>=0.0.12 in /usr/local/lib/python3.9/site-packages/huggingface_hub-0.0.19-py3.9.egg (from transformers) (0.0.19)
Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.9/site-packages (from transformers) (1.21.1)
Requirement already satisfied: packaging in /usr/local/lib/python3.9/site-packages/packaging-21.0-py3.9.egg (from transformers) (21.0)
Requirement already satisfied: pyyaml>=5.1 in /usr/local/lib/python3.9/site-packages/PyYAML-6.0-py3.9-linux-x86_64.egg (from transformers) (6.0)
Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.9/site-packages/regex-2021.10.8-py3.9-linux-x86_64.egg (from transformers) (2021.10.8)
Requirement already satisfied: requests in /usr/local/lib/python3.9/site-packages (from transformers) (2.25.1)
Requirement already satisfied: sacremoses in /usr/local/lib/python3.9/site-packages/sacremoses-0.0.46-py3.9.egg (from transformers) (0.0.46)
Requirement already satisfied: tokenizers<0.11,>=0.10.1 in /usr/local/lib/python3.9/site-packages/tokenizers-0.10.3-py3.9-linux-x86_64.egg (from transformers) (0.10.3)
Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.9/site-packages (from transformers) (4.61.2)
Requirement already satisfied: typing-extensions in /usr/local/lib/python3.9/site-packages/typing_extensions-3.10.0.2-py3.9.egg (from huggingface-hub>=0.0.12->transformers) (3.10.0.2)
Requirement already satisfied: pyparsing>=2.0.2 in /usr/local/lib/python3.9/site-packages (from packaging->transformers) (2.4.7)
Requirement already satisfied: chardet<5,>=3.0.2 in /usr/local/lib/python3.9/site-packages (from requests->transformers) (4.0.0)
Requirement already satisfied: urllib3<1.27,>=1.21.1 in /usr/local/lib/python3.9/site-packages (from requests->transformers) (1.26.6)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.9/site-packages (from requests->transformers) (2021.10.8)
Requirement already satisfied: idna<3,>=2.5 in /usr/local/lib/python3.9/site-packages (from requests->transformers) (2.10)
Requirement already satisfied: click in /usr/local/lib/python3.9/site-packages/click-8.0.3-py3.9.egg (from sacremoses->transformers) (8.0.3)
Requirement already satisfied: joblib in /usr/local/lib/python3.9/site-packages/joblib-1.1.0-py3.9.egg (from sacremoses->transformers) (1.1.0)
Requirement already satisfied: six in /usr/local/lib/python3.9/site-packages (from sacremoses->transformers) (1.16.0)
WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended to use a virtual environment instead: https://pip.pypa.io/warnings/venv

But when I tried to import this package:

import transformers
transformers.__file__

I still got (The same as before):

ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-7-3f209fc7b4a0> in <module>()
----> 1 import transformers
      2 transformers.__file__

ModuleNotFoundError: No module named 'transformers'

I also tried:

But none of them works. Would be appreciate for any suggestions!

eyalElb commented 1 year ago

here too https://colab.research.google.com/drive/12UFBm2k0FIYOc-5cbnYDkNv-1qmuwxUj?usp=sharing