如何在 mac os m1 上从源代码安装 autokeras

时间:2021-05-09 18:22:28

标签: macos tensorflow keras tensorflow2.0 auto-keras

我按照此处的建议在 Mac Os Big Sur 11.3.1 M1 上安装了 Tensorflow 版本 2.4.0-rc0:

https://github.com/apple/tensorflow_macos/issues/153

在我的conda环境中,根本没有安装autokeras,我需要安装它;我需要从源代码安装它。

我按照以下步骤安装它:(这些说明取自以下线程:https://github.com/keras-team/autokeras/issues/1466

For the autokeras, I could not the directly using pip install autokeras duo to the setup.py set the normal tensorflow as the requirement. This time we can build from the source:
Download the source code,
git clone https://github.com/keras-team/autokeras.git
sometimes may need to install Cython:
pip3 install Cython
Also we need pandas and sklearn, this will install the arm compatible version, do not let the setup.py to install:
conda install pandas scikit-learn -c conda-forge
edit the line24 in setup.py (I just commented it), then:
python setup.py install

一切正常,但在最后一步,我运行 autokeras 时没有安装 python setup.py install

这是我尝试安装时得到的输出:

(python38) autokeras % python setup.py install
running install
running bdist_egg
running egg_info
writing autokeras.egg-info/PKG-INFO
writing dependency_links to autokeras.egg-info/dependency_links.txt
writing requirements to autokeras.egg-info/requires.txt
writing top-level names to autokeras.egg-info/top_level.txt
reading manifest file 'autokeras.egg-info/SOURCES.txt'
writing manifest file 'autokeras.egg-info/SOURCES.txt'
installing library code to build/bdist.macosx-11.0-arm64/egg
running install_lib
running build_py
creating build/bdist.macosx-11.0-arm64/egg
creating build/bdist.macosx-11.0-arm64/egg/benchmark
copying build/lib/benchmark/run.py -> build/bdist.macosx-11.0-arm64/egg/benchmark
creating build/bdist.macosx-11.0-arm64/egg/benchmark/experiments
copying build/lib/benchmark/experiments/__init__.py -> build/bdist.macosx-11.0-arm64/egg/benchmark/experiments
copying build/lib/benchmark/experiments/experiment.py -> build/bdist.macosx-11.0-arm64/egg/benchmark/experiments
copying build/lib/benchmark/experiments/structured_data.py -> build/bdist.macosx-11.0-arm64/egg/benchmark/experiments
copying build/lib/benchmark/experiments/text.py -> build/bdist.macosx-11.0-arm64/egg/benchmark/experiments
copying build/lib/benchmark/experiments/image.py -> build/bdist.macosx-11.0-arm64/egg/benchmark/experiments
copying build/lib/benchmark/__init__.py -> build/bdist.macosx-11.0-arm64/egg/benchmark
copying build/lib/benchmark/README.md -> build/bdist.macosx-11.0-arm64/egg/benchmark
creating build/bdist.macosx-11.0-arm64/egg/autokeras
creating build/bdist.macosx-11.0-arm64/egg/autokeras/blocks
copying build/lib/autokeras/blocks/wrapper.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/blocks
copying build/lib/autokeras/blocks/reduction.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/blocks
copying build/lib/autokeras/blocks/__init__.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/blocks
copying build/lib/autokeras/blocks/basic.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/blocks
copying build/lib/autokeras/blocks/preprocessing.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/blocks
copying build/lib/autokeras/blocks/heads.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/blocks
creating build/bdist.macosx-11.0-arm64/egg/autokeras/preprocessors
copying build/lib/autokeras/preprocessors/__init__.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/preprocessors
copying build/lib/autokeras/preprocessors/encoders.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/preprocessors
copying build/lib/autokeras/preprocessors/common.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/preprocessors
copying build/lib/autokeras/preprocessors/postprocessors.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/preprocessors
creating build/bdist.macosx-11.0-arm64/egg/autokeras/tasks
copying build/lib/autokeras/tasks/time_series_forecaster.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/tasks
copying build/lib/autokeras/tasks/__init__.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/tasks
copying build/lib/autokeras/tasks/structured_data.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/tasks
copying build/lib/autokeras/tasks/text.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/tasks
copying build/lib/autokeras/tasks/image.py -> build/bdist.macosx-11.0-arm64/egg/autokeras/tasks

.......
.......
.......
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/blocks/preprocessing.py to preprocessing.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/blocks/heads.py to heads.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/preprocessors/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/preprocessors/encoders.py to encoders.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/preprocessors/common.py to common.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/preprocessors/postprocessors.py to postprocessors.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tasks/time_series_forecaster.py to time_series_forecaster.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tasks/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tasks/structured_data.py to structured_data.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tasks/text.py to text.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tasks/image.py to image.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/auto_model.py to auto_model.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/graph.py to graph.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/constants.py to constants.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/utils/layer_utils.py to layer_utils.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/utils/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/utils/types.py to types.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/utils/data_utils.py to data_utils.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/utils/utils.py to utils.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/utils/io_utils.py to io_utils.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tuners/task_specific.py to task_specific.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tuners/bayesian_optimization.py to bayesian_optimization.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tuners/greedy.py to greedy.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tuners/hyperband.py to hyperband.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tuners/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/tuners/random_search.py to random_search.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/adapters/output_adapters.py to output_adapters.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/adapters/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/adapters/input_adapters.py to input_adapters.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/hyper_preprocessors.py to hyper_preprocessors.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/keras_layers.py to keras_layers.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/pipeline.py to pipeline.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/analysers/input_analysers.py to input_analysers.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/analysers/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/analysers/output_analysers.py to output_analysers.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/nodes.py to nodes.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/io_hypermodel.py to io_hypermodel.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/adapter.py to adapter.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/serializable.py to serializable.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/hyper_preprocessor.py to hyper_preprocessor.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/preprocessor.py to preprocessor.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/named_hypermodel.py to named_hypermodel.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/head.py to head.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/node.py to node.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/block.py to block.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/tuner.py to tuner.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/autokeras/engine/analyser.py to analyser.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/blocks/preprocessing_test.py to preprocessing_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/blocks/wrapper_test.py to wrapper_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/blocks/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/blocks/heads_test.py to heads_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/blocks/basic_test.py to basic_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/blocks/reduction_test.py to reduction_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/auto_model_test.py to auto_model_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/preprocessors/common_test.py to common_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/preprocessors/encoders_test.py to encoders_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/preprocessors/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/preprocessors/postprocessors_test.py to postprocessors_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tasks/text_test.py to text_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tasks/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tasks/structured_data_test.py to structured_data_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tasks/image_test.py to image_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tasks/time_series_forecaster_test.py to time_series_forecaster_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/typed_api_test.py to typed_api_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/pipeline_test.py to pipeline_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/nodes_test.py to nodes_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/utils/utils_test.py to utils_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/utils/io_utils_test.py to io_utils_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/utils/data_utils_test.py to data_utils_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/utils/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/hyper_preprocessors_test.py to hyper_preprocessors_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tuners/hyperband_test.py to hyperband_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tuners/task_specific_test.py to task_specific_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tuners/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tuners/random_search_test.py to random_search_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/tuners/greedy_test.py to greedy_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/adapters/input_adapters_test.py to input_adapters_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/adapters/output_adapters_test.py to output_adapters_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/adapters/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/graph_test.py to graph_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/analysers/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/analysers/input_analysers_test.py to input_analysers_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/analysers/output_analysers_test.py to output_analysers_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/keras_layers_test.py to keras_layers_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/engine/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/engine/block_test.py to block_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/engine/adapter_test.py to adapter_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/engine/head_test.py to head_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/engine/tuner_test.py to tuner_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/unit_tests/engine/node_test.py to node_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/integration_tests/io_api_test.py to io_api_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/integration_tests/__init__.py to __init__.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/integration_tests/task_api_test.py to task_api_test.cpython-38.pyc
byte-compiling build/bdist.macosx-11.0-arm64/egg/tests/integration_tests/functional_api_test.py to functional_api_test.cpython-38.pyc
creating build/bdist.macosx-11.0-arm64/egg/EGG-INFO
copying autokeras.egg-info/PKG-INFO -> build/bdist.macosx-11.0-arm64/egg/EGG-INFO
copying autokeras.egg-info/SOURCES.txt -> build/bdist.macosx-11.0-arm64/egg/EGG-INFO
copying autokeras.egg-info/dependency_links.txt -> build/bdist.macosx-11.0-arm64/egg/EGG-INFO
copying autokeras.egg-info/requires.txt -> build/bdist.macosx-11.0-arm64/egg/EGG-INFO
copying autokeras.egg-info/top_level.txt -> build/bdist.macosx-11.0-arm64/egg/EGG-INFO
zip_safe flag not set; analyzing archive contents...
creating 'dist/autokeras-1.0.13-py3.8.egg' and adding 'build/bdist.macosx-11.0-arm64/egg' to it
removing 'build/bdist.macosx-11.0-arm64/egg' (and everything under it)
Processing autokeras-1.0.13-py3.8.egg
Removing /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages/autokeras-1.0.13-py3.8.egg
Copying autokeras-1.0.13-py3.8.egg to /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
autokeras 1.0.13 is already the active version in easy-install.pth

Installed /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages/autokeras-1.0.13-py3.8.egg
Processing dependencies for autokeras==1.0.13
Searching for pandas==1.2.4
Best match: pandas 1.2.4
Adding pandas 1.2.4 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for scikit-learn==0.24.2
Best match: scikit-learn 0.24.2
Adding scikit-learn 0.24.2 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for keras-tuner==1.0.3
Best match: keras-tuner 1.0.3
Adding keras-tuner 1.0.3 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for packaging==20.9
Best match: packaging 20.9
Adding packaging 20.9 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for numpy==1.19.5
Best match: numpy 1.19.5
Adding numpy 1.19.5 to easy-install.pth file
Installing f2py script to /Users/me/miniforge3/envs/python38/bin
Installing f2py3 script to /Users/me/miniforge3/envs/python38/bin
Installing f2py3.8 script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for pytz==2021.1
Best match: pytz 2021.1
Adding pytz 2021.1 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for python-dateutil==2.8.1
Best match: python-dateutil 2.8.1
Adding python-dateutil 2.8.1 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for scipy==1.6.3
Best match: scipy 1.6.3
Adding scipy 1.6.3 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for joblib==1.0.1
Best match: joblib 1.0.1
Adding joblib 1.0.1 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for threadpoolctl==2.1.0
Best match: threadpoolctl 2.1.0
Adding threadpoolctl 2.1.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for ipython==7.23.1
Best match: ipython 7.23.1
Adding ipython 7.23.1 to easy-install.pth file
Installing iptest script to /Users/me/miniforge3/envs/python38/bin
Installing iptest3 script to /Users/me/miniforge3/envs/python38/bin
Installing ipython script to /Users/me/miniforge3/envs/python38/bin
Installing ipython3 script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for tensorboard==2.5.0
Best match: tensorboard 2.5.0
Adding tensorboard 2.5.0 to easy-install.pth file
Installing tensorboard script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for requests==2.25.1
Best match: requests 2.25.1
Adding requests 2.25.1 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for pyparsing==2.4.7
Best match: pyparsing 2.4.7
Adding pyparsing 2.4.7 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for six==1.15.0
Best match: six 1.15.0
Adding six 1.15.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for Pygments==2.9.0
Best match: Pygments 2.9.0
Adding Pygments 2.9.0 to easy-install.pth file
Installing pygmentize script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for jedi==0.18.0
Best match: jedi 0.18.0
Adding jedi 0.18.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for pexpect==4.8.0
Best match: pexpect 4.8.0
Adding pexpect 4.8.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for traitlets==5.0.5
Best match: traitlets 5.0.5
Adding traitlets 5.0.5 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for decorator==5.0.7
Best match: decorator 5.0.7
Adding decorator 5.0.7 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for pickleshare==0.7.5
Best match: pickleshare 0.7.5
Adding pickleshare 0.7.5 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for matplotlib-inline==0.1.2
Best match: matplotlib-inline 0.1.2
Adding matplotlib-inline 0.1.2 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for appnope==0.1.2
Best match: appnope 0.1.2
Adding appnope 0.1.2 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for setuptools==49.6.0.post20210108
Best match: setuptools 49.6.0.post20210108
Adding setuptools 49.6.0.post20210108 to easy-install.pth file
Installing easy_install script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for prompt-toolkit==3.0.18
Best match: prompt-toolkit 3.0.18
Adding prompt-toolkit 3.0.18 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for backcall==0.2.0
Best match: backcall 0.2.0
Adding backcall 0.2.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for absl-py==0.12.0
Best match: absl-py 0.12.0
Adding absl-py 0.12.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for google-auth-oauthlib==0.4.4
Best match: google-auth-oauthlib 0.4.4
Adding google-auth-oauthlib 0.4.4 to easy-install.pth file
Installing google-oauthlib-tool script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for tensorboard-plugin-wit==1.8.0
Best match: tensorboard-plugin-wit 1.8.0
Adding tensorboard-plugin-wit 1.8.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for tensorboard-data-server==0.6.0
Best match: tensorboard-data-server 0.6.0
Adding tensorboard-data-server 0.6.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for google-auth==1.30.0
Best match: google-auth 1.30.0
Adding google-auth 1.30.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for Werkzeug==1.0.1
Best match: Werkzeug 1.0.1
Adding Werkzeug 1.0.1 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for Markdown==3.3.4
Best match: Markdown 3.3.4
Adding Markdown 3.3.4 to easy-install.pth file
Installing markdown_py script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for grpcio==1.33.2
Best match: grpcio 1.33.2
Adding grpcio 1.33.2 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for wheel==0.36.2
Best match: wheel 0.36.2
Processing wheel-0.36.2-py3.8.egg
wheel 0.36.2 is already the active version in easy-install.pth
Installing wheel script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages/wheel-0.36.2-py3.8.egg
Searching for protobuf==3.15.8
Best match: protobuf 3.15.8
Adding protobuf 3.15.8 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for chardet==4.0.0
Best match: chardet 4.0.0
Adding chardet 4.0.0 to easy-install.pth file
Installing chardetect script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for idna==2.10
Best match: idna 2.10
Adding idna 2.10 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for urllib3==1.26.4
Best match: urllib3 1.26.4
Adding urllib3 1.26.4 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for certifi==2020.12.5
Best match: certifi 2020.12.5
Adding certifi 2020.12.5 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for parso==0.8.2
Best match: parso 0.8.2
Adding parso 0.8.2 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for ptyprocess==0.7.0
Best match: ptyprocess 0.7.0
Adding ptyprocess 0.7.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for ipython-genutils==0.2.0
Best match: ipython-genutils 0.2.0
Processing ipython_genutils-0.2.0-py3.8.egg
ipython-genutils 0.2.0 is already the active version in easy-install.pth

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages/ipython_genutils-0.2.0-py3.8.egg
Searching for wcwidth==0.2.5
Best match: wcwidth 0.2.5
Adding wcwidth 0.2.5 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for requests-oauthlib==1.3.0
Best match: requests-oauthlib 1.3.0
Adding requests-oauthlib 1.3.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for cachetools==4.2.2
Best match: cachetools 4.2.2
Adding cachetools 4.2.2 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for pyasn1-modules==0.2.8
Best match: pyasn1-modules 0.2.8
Adding pyasn1-modules 0.2.8 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for rsa==4.7.2
Best match: rsa 4.7.2
Adding rsa 4.7.2 to easy-install.pth file
Installing pyrsa-decrypt script to /Users/me/miniforge3/envs/python38/bin
Installing pyrsa-encrypt script to /Users/me/miniforge3/envs/python38/bin
Installing pyrsa-keygen script to /Users/me/miniforge3/envs/python38/bin
Installing pyrsa-priv2pub script to /Users/me/miniforge3/envs/python38/bin
Installing pyrsa-sign script to /Users/me/miniforge3/envs/python38/bin
Installing pyrsa-verify script to /Users/me/miniforge3/envs/python38/bin

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for oauthlib==3.1.0
Best match: oauthlib 3.1.0
Adding oauthlib 3.1.0 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Searching for pyasn1==0.4.8
Best match: pyasn1 0.4.8
Adding pyasn1 0.4.8 to easy-install.pth file

Using /Users/me/miniforge3/envs/python38/lib/python3.8/site-packages
Finished processing dependencies for autokeras==1.0.13

从输出中可以看出,它没有说明软件包安装成功

当我运行 conda list 时,我没有在结果中看到 autokeras。

我不知道该怎么办了。

有人可以帮忙解决这个问题吗?我不知道该尝试什么了...

0 个答案:

没有答案
相关问题