
Python
hitman.banker
Thinking in Architecture and Art
展开
-
mac python 3 SSL module is not available
laptop: macbook pro安装python-vlc时报错SSL module is not available百度了一圈都是各种安装openssl或重新compile python的复杂操作. 试了下还是不行.最后还是stackoverflow上这个又简单又解决了问题.brew reinstall python...原创 2020-06-20 09:03:46 · 415 阅读 · 0 评论 -
python中的@运算符
在看fastai的代码时,看到这么一段:n=100x = torch.ones(n,2) x[:,0].uniform_(-1.,1)x[:5]a = tensor(3.,2)y = x@a + torch.rand(n)这里面有个@符号不知道是啥意思?于是百度搜了一下,都是说@xxx是注解或者装饰器,明显不是这段代码的场景嘛!于是又Google了一下,原来这个@是Py...原创 2019-12-31 10:24:29 · 12087 阅读 · 7 评论 -
Python Note
1. Programs are usually created by typing definitions into a separate file called amoduleorscript. This file is saved on a disk so that it can be used over and over again.2. Technically, Python us原创 2012-12-18 12:01:29 · 676 阅读 · 0 评论 -
Windows Pycharm 开发Spark环境搭建
百度看到的答案都不太满意,自己记录一下,是参考的这个:https://stackoverflow.com/questions/34685905/how-to-link-pycharm-with-pyspark环境: Windows 10 64bit, Spark 2.3.2, Pycharm 2018.2具体这样操作:就是先new一个project,然后File -> Set...原创 2018-10-24 16:59:54 · 1035 阅读 · 0 评论