ywangd / stash

StaSh - Shell for Pythonista
MIT License
1.93k stars 227 forks source link

Cannot import name BytesIO. Cannot import name certs. Py2.7 #338

Open atronah opened 6 years ago

atronah commented 6 years ago

After successful installing plotly for python 2.7 (run launch_stash.py by python2.7 and run command pip instal plotly) first run launch_stash.py throws an error Cannot import name BytesIO and second try throws Cannot import name certs.

Py3 run works fine.

Traceback (most recent call last):
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/launch_stash.py", line 27, in <module>
    from stash import stash
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/site-packages/stash/__init__.py", line 1, in <module>
    from . import core as stash
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/site-packages/stash/core.py", line 16, in <module>
    from io import IOBase
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/site-packages-2/io/__init__.py", line 1, in <module>
    from ._orca import to_image, write_image
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/site-packages-2/io/_orca.py", line 11, in <module>
    import requests
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/__init__.py", line 59, in <module>
    from . import utils
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/utils.py", line 27, in <module>
    from .compat import parse_http_list as _parse_list_header
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/compat.py", line 8, in <module>
    from .packages import chardet
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/packages/__init__.py", line 3, in <module>
    from . import urllib3
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/packages/urllib3/__init__.py", line 12, in <module>
    from .connectionpool import (
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/packages/urllib3/connectionpool.py", line 38, in <module>
    from .request import RequestMethods
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/packages/urllib3/request.py", line 7, in <module>
    from .filepost import encode_multipart_formdata
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/packages/urllib3/filepost.py", line 5, in <module>
    from io import BytesIO
ImportError: cannot import name BytesIO

second run

Traceback (most recent call last):
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/launch_stash.py", line 27, in <module>
    from stash import stash
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/site-packages/stash/__init__.py", line 1, in <module>
    from . import core as stash
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/site-packages/stash/core.py", line 16, in <module>
    from io import IOBase
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/site-packages-2/io/__init__.py", line 1, in <module>
    from ._orca import to_image, write_image
  File "/private/var/mobile/Containers/Shared/AppGroup/58EF1FE9-D2C0-4847-BB00-777033764D73/Pythonista3/Documents/site-packages-2/io/_orca.py", line 11, in <module>
    import requests
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/__init__.py", line 59, in <module>
    from . import utils
  File "/var/containers/Bundle/Application/5EC7C3D8-CF3B-4742-8230-AC4DB8C0791C/Pythonista3.app/Frameworks/Py2Kit.framework/pylib/site-packages/requests/utils.py", line 26, in <module>
    from . import certs
ImportError: cannot import name certs

But module certs exists in folder with requests.utils.

P.S.: import plotly throws Cannot import name retrying

Can I fix it without reinstall Pythonista?

bennr01 commented 6 years ago

The second traceback indicates problems with the requests module. Did you try to install it ia StaSh? Pythonista already includes the requests module and an install is not required.

Lets try to fix this:

  1. run version and paste the output here. Remember your StaSh version.
  2. If you run a StaSh version older than v0.7.1, run selfupdate -f.
  3. If your old StaSh version was older than v0.7.0, delete everything in your site-packages directory except the stash directory. Since StaSh v0.7.0, pip installs to site-packages-2/3 instead of site-packages, which may help fixing this issue.
  4. If your old StaSh version was v0.7.0, delete everything in the site-packages-2/3 directories.
  5. Force quit pythonista and restart StaSh.
  6. Run pip uninstall pyplot to be sure.
  7. Run pip install pyplot andpaste the output here.
  8. Check if it is now installed correctly.

Hope this works :)

atronah commented 6 years ago

My actions:

version output:

Pythonista 3.2 (320000)
iOS 12.0 (64-bit iPhone10,4)
Python 3.6.1
root: ~/Documents/site-packages/stash
core.py: 2018-09-18 23:34:46
SELFUPDATE_TARGET: master
BIN_PATH:
  ~/Documents/bin
  ~/Documents/stash_extensions/bin
  ~/Documents/site-packages/stash/bin

stash version v0.7.1

atronah commented 6 years ago

Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattergl/unselected/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/hoverlabel -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/hoverlabel/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/marker/colorbar -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/marker/colorbar/tickfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/marker/colorbar/tickformatstop -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/marker/colorbar/titlefont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/selected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/selected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/stream -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/unselected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scattermapbox/unselected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/hoverlabel -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/hoverlabel/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/marker/colorbar -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/marker/colorbar/tickfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/marker/colorbar/tickformatstop -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/marker/colorbar/titlefont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/marker/gradient -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/marker/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/selected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/selected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/selected/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/stream -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/unselected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/unselected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolar/unselected/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/hoverlabel -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/hoverlabel/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/marker/colorbar -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/marker/colorbar/tickfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/marker/colorbar/tickformatstop -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/marker/colorbar/titlefont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/marker/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/selected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/selected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/selected/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/stream -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/unselected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/unselected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterpolargl/unselected/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/hoverlabel -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/hoverlabel/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/marker/colorbar -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/marker/colorbar/tickfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/marker/colorbar/tickformatstop -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/marker/colorbar/titlefont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/marker/gradient -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/marker/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/selected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/selected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/selected/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/stream -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/unselected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/unselected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/scatterternary/unselected/textfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/diagonal -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/dimension -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/dimension/axis -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/hoverlabel -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/hoverlabel/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/marker/colorbar -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/marker/colorbar/tickfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/marker/colorbar/tickformatstop -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/marker/colorbar/titlefont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/marker/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/selected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/selected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/stream -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/unselected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/splom/unselected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/colorbar -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/colorbar/tickfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/colorbar/tickformatstop -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/colorbar/titlefont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/hoverlabel -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/hoverlabel/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/lighting -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/lightposition -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/starts -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/streamtube/stream -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/colorbar -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/colorbar/tickfont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/colorbar/tickformatstop -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/colorbar/titlefont -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/contours -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/contours/x -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/contours/x/project -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/contours/y -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/contours/y/project -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/contours/z -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/contours/z/project -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/hoverlabel -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/hoverlabel/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/lighting -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/lightposition -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/surface/stream -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/cells -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/cells/fill -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/cells/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/cells/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/domain -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/header -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/header/fill -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/header/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/header/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/hoverlabel -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/hoverlabel/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/table/stream -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/box -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/box/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/hoverlabel -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/hoverlabel/font -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/marker/line -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/meanline -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/selected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/selected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/stream -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/unselected -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/validators/violin/unselected/marker -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotly/widgets -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Copying /private/var/mobile/Containers/Data/Application/0C97EE43-B1AB-4B33-9E79-B597DA6331B7/tmp/wheel_tmp/plotly-3.2.1-py2.py3-none-any.whl/plotlywidget -> /private/var/mobile/Containers/Shared/AppGroup/D7B38A05-59DD-41CB-8894-7B859BC877D5/Pythonista3/Documents/site-packages-2
Running handler 'console_scripts installer'...
No entry_points.txt found, skipping.
Cleaning up...
Package installed: plotly
[~/Documents]$