0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Visual Studio2019でtalibをダウンロードが上手くいったのでまとめてみた

Last updated at Posted at 2020-05-17

windows10 64bit, python3.7, VisualStudio Community 2019の環境でTA-Libをインストールしようとしたらやっぱり躓いたので、同じく躓いた人が参考になるように解決方法をここに記します。


結論

下記でも述べますが,pythonのパッケージをインストールするときはVisualStudioのインストーラを使ってました。
↓このようなもの
visualstudio.png

ですが,VisualStudioに付属されているコマンドプロンプト「developer command prompt」を使って,元々コンパイルされている.whlファイル「TA_Lib-0.4.18-cp37-cp37m-win_amd64.whl」をインストールすれば大丈夫です。
.whlファイルはリンク先からダウンロード可能

その手順を書きます。

①コンソールでpipコマンドを使えるようにする
developer command promptを起動して,下記のコマンドを入力することで,pipコマンドを使えるようにする。

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>py -m pip install pypdf2

②C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>配下に対象の.whlファイルを置く
↓こんな感じ
explore.png

③.whlファイルをインストール

C:\Program Files (x86)\Microsoft Visual Studio\2019\Community>py -m pip install TA_Lib-0.4.18-cp37-cp37m-win_amd64.whl

④VisualStudioでTA-Libをインストール
visualstudio2.png

以上が手順になります。
半日以上かかったのに記事にするとあっけなかったです…

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?