-
Notifications
You must be signed in to change notification settings - Fork 2
/
Jetson Documentation
56 lines (40 loc) · 1.73 KB
/
Jetson Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Jetson
10-08-2022 3.25PM
Installing Tensorflow :
python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.12.0-py3-none-any.whl
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.0.0-py3-none-any.whl
pip3 install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-1.5.0-py3-none-any.whl
Error :
Failed to load the native TensorFlow runtime.
Solution :
pip install tensorflow --upgrade --force-reinstall
Creating a Virtual Enviroment :
->conda installation
https://chowdera.com/2022/02/202202131259067625.html
https://github.com/conda-forge/miniforge
https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-Linux-aarch64.sh
Result :
==> For changes to take effect, close and re-open your current shell. <==
If you'd prefer that conda's base environment not be activated on startup,
set the auto_activate_base parameter to false:
conda config --set auto_activate_base false
Thank you for installing Miniforge-pypy3!
***Must restart the Jetson Nano
sudo apt-get install python3-pip
sudo pip3 install virtualenv
virtualenv vcsd
virtualenv -p /usr/bin/python3.6 vcsd
to activate :
source vcsd/bin/activate
python3 NLP.py
pip install serial
pip3 install pyserial
pip install speechrecognition
pip3 install SpeechRecognition
sudo apt install python3-opencv
How to install PyAudio
https://stackoverflow.com/questions/55984129/attributeerror-could-not-find-pyaudio-check-installation-cant-use-speech-re
Step 1
sudo apt-get install portaudio19-dev python-pyaudio
Step 2
pip install PyAudio