This article was moved to https://zhiyzuo.github.io/installation-rattle/ !
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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 file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
title: "Example Data Dictionary" | |
author: "Jennifer Thompson" | |
date: "11/1/2018" | |
output: | |
html_document: | |
theme: yeti | |
code_folding: hide | |
--- |
- 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(