前提・問題点
少し古い本ですが、「将棋AIで学ぶディープラーニング」という本を用いて将棋AIの作成をしています。環境を示します。
・Windows10
・Anaconda3
・python 3.8
・cuda 10.1
・cuDNN 7.6.5
・Chainer 7.8.0
・visual studio 2019
序盤の段階ですが、python-dlshogiをinstallしようとするとエラーが発生してしまいます。解決策がわかる方ご教授いただければ幸いです。
setup.py
python
1import setuptools 2 3setuptools.setup( 4 name = 'python-dlshogi', 5 version = '0.0.1', 6 author = '', 7 packages = ['pydlshogi'], 8 scripts = [], 9)
###実行コマンドとエラー内容
コマンドプロンプトでプロジェクトディレクトリに移動し、pip install --no-cache-dir -e .
を実行しました。
エラー内容は次の通りです。
ERROR: Command errored out with exit status 1: command: 'c:\users\takahiro\anaconda3\python.exe' -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\Users\takahiro\policy_network\setup.py'"'"'; __file__='"'"'C:\Users\takahiro\policy_network\setup.py'"'"';f = getattr(tokenize, '"'"'open'"'"', open)(__file__) if os.path.exists(__file__) else io.StringIO('"'"'from setuptools import setup; setup()'"'"');code = f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' egg_info --egg-base 'C:\Users\takahiro\AppData\Local\Temp\pip-pip-egg-info-26xk1dvo' cwd: C:\Users\takahiro\policy_network\ Complete output (7 lines): running egg_info creating C:\Users\takahiro\AppData\Local\Temp\pip-pip-egg-info-26xk1dvo\python_dlshogi.egg-info writing C:\Users\takahiro\AppData\Local\Temp\pip-pip-egg-info-26xk1dvo\python_dlshogi.egg-info\PKG-INFO writing dependency_links to C:\Users\takahiro\AppData\Local\Temp\pip-pip-egg-info-26xk1dvo\python_dlshogi.egg-info\dependency_links.txt writing top-level names to C:\Users\takahiro\AppData\Local\Temp\pip-pip-egg-info-26xk1dvo\python_dlshogi.egg-info\top_level.txt writing manifest file 'C:\Users\takahiro\AppData\Local\Temp\pip-pip-egg-info-26xk1dvo\python_dlshogi.egg-info\SOURCES.txt' error: package directory 'pydlshogi' does not exist ---------------------------------------- WARNING: Discarding file:///C:/Users/takahiro/policy_network. Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output. ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
以上です。よろしくお願いします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/08/17 00:29