以为我要检查计算机上安装的Python版本,我输入了
python -v
在我的终端,我得到第一行说
"安装zipimport hook",然后还有一大堆文本(大概50行左右的文本),其中包括#34; import errno#builtin"," import posix#builtin"," import _codecs#builtin",并在最后" Python 2.7.8 | Anaconda 2.1.0(x86_64)| (默认,2014年8月21日,15:21:46)"
我做了什么?那个命令安装了什么?
编辑:我在v
中输入的python -v
是小写v
。当我现在尝试大写V
时,我确实在我的计算机上获得了Python的版本。
答案 0 :(得分:6)
您需要python --version
(大写)或-v
。小写library(iptools)
library(rgeolocate)
library(dplyr)
library(ggplot2)
library(ggalt)
URL <- "http://geolite.maxmind.com/download/geoip/database/GeoLite2-City.mmdb.gz"
fil <- basename(URL)
if (!file.exists(fil)) download.file(URL, fil)
R.utils::gunzip(fil, overwrite=TRUE)
ips <- ip_random(10000)
ip_geo <- maxmind(ips, "GeoLite2-City.mmdb", c("country_name", "city_name", "longitude", "latitude"))
count(ip_geo, longitude, latitude, sort=TRUE) %>%
filter(!is.na(longitude)) -> for_circles
world_map <- map_data("world")
world_map <- filter(world_map, region != "Antarctica")
gg <- ggplot()
gg <- gg + geom_map(data=world_map, map=world_map,
aes(long, lat, map_id=region),
colour="#2b2b2b", size=0.15, fill=NA)
gg <- gg + geom_point(data=for_circles,
aes(x=longitude, y=latitude, size=n),
shape=21, stroke=0.15, alpha=1.8/2, color="#b2182b")
gg <- gg + scale_size_continuous(trans="log10")
gg <- gg + coord_proj("+proj=wintri")
gg <- gg + ggthemes::theme_map()
gg
表示“详细”,并将一堆诊断信息添加到您可以放心忽略的输出中。