1
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 1 year has passed since last update.

Raspberry Pi 4 model Bで仮想環境をつくる

Posted at

1. 概要

こちらの続き
普段MacでAnacondaを使っているので、ラズパイでもcondaを使えるようにしようと思いましたが、Raspberry Pi 4でMinicondaは上手く動かないみたいです。
参考:https://qiita.com/hanaata/items/39ada844c7c292d2fef1#python

ラズパイ用にberrycondaというものもあるようですが、こちらも

This project is no longer active
https://github.com/jjhelmus/berryconda

と書いてあるので、使わない方がいいかなと思いました。

venvが使えそうなのでそちらで環境構築していきます。

https://nagolab.com/keijiban/2018/08/06/%E2%80%BB%E4%BB%AE%E6%83%B3%E7%92%B0%E5%A2%83%E3%81%AB%E3%81%A4%E3%81%84%E3%81%A6/
https://peislab.com/programming/python/install_py37/

2. 仮想環境をつくる

$ python -V
Python 3.9.2

python 3.9が入っていました。

仮想環境は

$ python3.9 -m venv (環境名)
$ source homeru/bin/activate
(環境名)$

となり、環境構築成功しました!
試しに

(環境名)$ pip install numpy
Successfully installed numpy-1.23.4

となり、numpyをインストールできました。

(環境名)$ pip list
numpy         1.23.4
pip           20.3.4
pkg-resources 0.0.0
setuptools    44.1.1

ちなみに

$ deactivate

で仮想環境から抜けられます。

1
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
1
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?