https://github.com/maxvol/home
https://github.com/maxvol/home
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/maxvol/home
- Owner: maxvol
- Created: 2018-11-13T03:20:34.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-17T06:53:33.000Z (over 7 years ago)
- Last Synced: 2025-02-27T09:57:55.605Z (over 1 year ago)
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Home
A basic Mac setup scenario.
* Install *Anaconda*
* Install *RStudio* from *Anaconda-Navigator*
* Create *Python 3.6* virtual environment -
```
conda create -n venv-3.6 python=3.6 anaconda
conda activate venv-3.6
```
* Install *TuriCreate* -
```
pip install -U turicreate
```
* Install *CoreML Tools* -
```
pip install -U coremltools
```
* Install *TF CoreML* -
```
pip install -U tfcoreml
```
* Install *TensorFlow* -
```
pip install -U tensorflow
```
Some *Anaconda* commands -
```
conda info --envs
conda deactivate
conda env remove -n ENV_NAME
```
How to remove *R CRAN* installed otherwise -
https://cran.r-project.org/doc/manuals/r-release/R-admin.html#Uninstalling-under-macOS
```
sudo rm -Rf /Library/Frameworks/R.framework /Applications/R.app \
/usr/local/bin/R /usr/local/bin/Rscript
```