forked from talgalili/installr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinstall.python.Rd
More file actions
42 lines (39 loc) · 1.3 KB
/
Copy pathinstall.python.Rd
File metadata and controls
42 lines (39 loc) · 1.3 KB
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/installPython.R
\name{install.python}
\alias{install.python}
\title{Downloads and installs python 2 or 3}
\usage{
install.python(
page_with_download_url = "https://www.python.org/downloads/windows/",
version_number = 3,
x64 = TRUE,
...
)
}
\arguments{
\item{page_with_download_url}{a link to the list of download links for Python}
\item{version_number}{Either 2 or 3. Version 2/3 will lead to download of v2.7.xx/3.6.xx respectively.}
\item{x64}{logical: fetch a 64 bit version. default is TRUE; used to check architecture of current R session.}
\item{...}{extra parameters to pass to \link{install.URL}}
}
\value{
TRUE/FALSE - was the installation successful or not.
}
\description{
Downloads and installs the latest version of python 2 or 3 for Windows.
}
\details{
Python is a programming language which has two versions under active development.
Make sure you know which version is required for the code you have to run, or alternatively, make sure you are developing code that is fit for your chosen version of Python. In addition, the Python installers are specific to 32 or 64 bit windows architectures.
}
\examples{
\dontrun{
install.python()
install.python(,3)
install.python(,2)
}
}
\author{
Tal Galili and A. Jonathan R. Godfrey
}