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.

[MEMO][開発環境構築] Python 

Last updated at Posted at 2020-02-01

#はじめに
##開発環境
Linux
##この記事について
環境構築やエラー解決のHowToが中心のメモです。

python

####やること

1.元から入っているpython(おそらくpython2.7)にpipを入れる。
sudo curl -kL https://bootstrap.pypa.io/get-pip.py | python

2.pyenvを入れる。

3.pyenvで必要なpythonをローカルに入れる。

4.ローカルにあるpythonにpipenvを入れる。

####まずビルドに必要なパッケージを入れておく

####libffi-dev
libffi-devを入れないとパッケージを入れる際にModuleNotFoundError: No module named '_ctypes'のようなビルドエラーに必ず直面するので入れる。

ビルドに必要なパッケージ
sudo apt install -y make build-essential libssl-dev \
zlib1g-dev libbz2-dev libreadline-dev libsqlite3-dev \
wget curl llvm libncurses5-dev libncursesw5-dev \
xz-utils libffi-dev
Tkinterに必要なパッケージ
sudo apt install python3-tk
pygameに必要なパッケージ
sudo apt install python3-dev libsdl-image1.2-dev \ 
libsdl-ttf2.0-dev libsdl1.2-devsubversion \
libportmidi-dev ffmpeg libswscale-dev libavformat-dev \ libavcodec-dev 

###pyenv

pyenvメモ

###pipenv

pipenvメモ

###JupyterNotebook
JupyterNotebookのメモ

###pip

####パッケージ一覧を書き出す

pip freeze > requirements.txt

####まとめてインストール

pip3 install -r requirements.txt

####まとめてアンインストール

pip3 uninstall -r requirements.txt

VSCode

setttings.json

unresolved import

インポートできて実行できるのに警告がでる意味不明な使用なので無効にします。

"python.analysis.disabled": [
    "unresolved-import"
]
0
0
3

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?