- Best way is editable pip packages (reference)
pip install --editable /path/to/package
You need to include a minimal setup.py
from setuptools import setup, find_packages
setup(pip install --editable /path/to/package
You need to include a minimal setup.py
from setuptools import setup, find_packages
setup(| --- | |
| title: "Example Data Dictionary" | |
| author: "Jennifer Thompson" | |
| date: "11/1/2018" | |
| output: | |
| html_document: | |
| theme: yeti | |
| code_folding: hide | |
| --- |
| ## Rule 0: strings as factors!!! | |
| options(stringsAsFactors=FALSE) | |
| ## To avoid quaint time zone issues, set to UTC if you are working on a single timezone | |
| Sys.setenv(TZ="UTC") | |
| ## on_sys_locale_problems | |
| sudo defaults write org.R-project.R force.LANG en_US.UTF-8 #Mac Terminal | |
| Sys.setlocale("LC_ALL", 'en_US.UTF-8') #Linux R Console | |
| Sys.setlocale(locale="Turkish_Turkey.1254") #Windows |
This article was moved to https://zhiyzuo.github.io/installation-rattle/ !