Mac系统下安装pycharm后启动出现System path '/Users/hxy/Library/Caches/PyCharm2018.2' is invalid.问题: 1.出现原因: 1.1)安装过Idea或其他版本的pycharm,故存在相似关联文件的问题: 1.2)该目录下不能通过当前登陆用户具有的权限创建新的目录: 2.解决办法: 1)1.1中的情况,可直接清理Cache目录下的文件解决问题: rm -rf /Users/hxy/Library/Caches/ 执行后启动pych…
今天新苹果机安装cocoapods,安装完以后发现怎么pod search 都没有用 命令行提示: swhcxp@iosdevmac ~ % pod search Almofire Setup completed [!] Unable to find a pod with name, author, summary, or description matching `Almofire` 然后我重装homebrew , RVM, Ruby,Cocoapods,都安装到最新还是没用 Homebrew…
  Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3512.30.14/UITableView.m:7962 - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:…
找到这篇文章 http://stackoverflow.com/questions/34153795/xcode-7-unable-to-open-instruments-from-developer-tools 在/Library/Caches中找到/Library/Caches/com.apple.dt.instruments 看有没有重复的 有重复的删掉一个旧版本…
环境:Xcode7.1.1 详细错误: *** Assertion failure in -[UITableView _configureCellForDisplay:forIndexPath:], /BuildRoot/Library/Caches/com.apple.xbs/Sources/UIKit_Sim/UIKit-3512.29.5/UITableView.m:7943 这个问题造成的主要原因就是tableView 获取单元格详细内容的时候最后返回的是空. 原因1:看加载的时候模型数…
WebStorm failing to start with 'idea.system.path' error Ask Question up vote 2 down vote favorite   I was saving a file earlier and webstorm started throwing errors as I was saving saying the an 'idea' file was read only. It was unresponsive so I kil…
LookupError: Couldn't find path to unrar library. 意思是找不到 unrar library的路径,这里我们就需要去下载这个unrar library,事实上它就是UnRAR.dll这个东西,下载网址:http://www.rarlab.com/rar/UnRARDLL.exe 或者去http://www.rarlab.com/rar_add.htm找到UnRAR.dll下载,在lunix下应该需要自己编译. 第二步: 安装完后我电脑中的路径为C:…
在Pycharm安装完unrar后,还要安装rar官方的库 不然运行的时候会抛出Couldn't find path to unrar library的错误 Windows: 下载rarlib的库文件,地址:http://www.rarlab.com/rar/UnRARDLL.exe 下载安装,默认设置就好了 安装完成后要设置环境变量 如果是64位操作系统 设置完环境变量后重启Pycharm Linux: 下载地址:http://www.rarlab.com/rar/unrarsrc-5.4.5…
1 详细异常 FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':az-exec-util:linkMainExecutable'. > Could not find Linker 'g++' in system path. * Try: Run with --stacktrace option to get the stack trace. Run with --info…
当引用第三方包,且没有源代码时候,可以使用system path <dependency> <groupId>ctec</groupId> <artifactId>xxx-core</artifactId> <version>1.0</version> <scope>system</scope> <systemPath>${project.basedir}/src/main/resour…
1. get files in the current directory with the assum that the directory is like this: a .py |----dataFolder |----Myfolder |----1.csv , 2.csv, 3.csv # a.py 1 def getFileList(): file_list = [] cur_dir = os.getcwd() for folder in os.walk(cur_dir).next()…
原因: 新的SDK不允许在设置rootViewController之前做过于复杂的操作,导致在didFinishLaunchingWithOptions 结束后还没有设置rootViewController Xcode7需要所有UIWindow必须立即先设置一个rootViewController 解决办法:先设置个rootVIewController 之后重新赋值 UIWindow *window = [[UIWindowalloc] initWithFrame:[UIScreenmainSc…
解决方法: 1.关闭Xcode,找到项目中的**.xcodeproj文件,点击右键,show package contents(打开包内容). 2.打开后找到project.pbxproj文件,用文本编辑器打开.其实就是右键,点击open就好了. 3.打开这个文件后,按command+F,在这个文件中查找“PROVISIONING_PROFILE",找到这个“PROVISIONING_PROFILE = "79693141-f98b-4ac4-8bb4-476c9475f265&quo…
安装完成后,配置环境变量,在home下的.bashrc中加入 export LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH export CUDA_HOME=/usr/local/cuda:$CUDA_HOME source ~/.bashrc…
去掉BOM头 writer = new XmlTextWriter(stream, new UnicodeEncoding(false,false)); 如果是UTF8 writer = new XmlTextWriter(stream, new UTF8Encoding(false));…
前面有写,可以利用uniConnection的ForceCreateDatabase参数,强制建立sqlite本地数据库, uniConnection1.SpecificOptions.Values['ForceCreateDatabase'] := 'True'; 当执行uniConnection1.Connect时,如果数据库文件不存在,那么uniDAC会建立一个新的数据库.   完整的代码: LocalFile := IncludeTrailingPathDelimiter(System.…
iOS五种本地缓存数据方式   iOS本地缓存数据方式有五种:前言 1.直接写文件方式:可以存储的对象有NSString.NSArray.NSDictionary.NSData.NSNumber,数据全部存放在一个属性列表文件(*.plist文件)中. 2.NSUserDefaults(偏好设置),用来存储应用设置信息,文件放在perference目录下. 3.归档操作(NSkeyedArchiver),不同于前面两种,它可以把自定义对象存放在文件中. 4.coreData:coreData是苹…
ios中常用文件存取的方法有: 1.直接写文件的方式,可以存储的对象有NSString.NSArray.NSDictionary.NSData.NSNumber,数据全部存放在一个属性列表文件(*.plist文件)中. 2.NSUeserDefaults(偏好设置),用来存储应用设置信息,文件放在perference目录下. 3.归档操作(NSkeyedArchiver),不同于前面两种,它可以把自定义对象存放在文件中. 首先每个开发者都应该知道,对于一个应用来说,有唯一的沙盒与之对应,即每个应…
一直想总结一下关于iOS的离线数据缓存的方面的问题,然后近期也简单的对AFN进行了再次封装.全部想把这两个结合起来写一下.数据展示型的页面做离线缓存能够有更好的用户体验,用户在离线环境下仍然能够获取一些数据.这里的数据缓存首选肯定是SQLite,轻量级.对数据的存储读取相对于其它几种方式有优势,这里对AFN的封装没有涉及太多业务逻辑层面的需求.主要还是对一些方法再次封装方便使用.解除项目对第三方的耦合性.能够简单的高速的更换底层使用的网络请求代码.这篇主要写离线缓存思路.对AFN的封装仅仅做简单…
首先是把tensorflow克隆到本地一份. git clone --recurse-submodules https://github.com/tensorflow/tensorflow.git 既然是谷歌官方要求的,最好把--recurse-submodules加上,文档说可以避免一些数据结构序列化时的编译问题. 这是android demo的github主页. 准备编译 1.安装bazel bazel是谷歌自己的构建工具.tensorflow只能部分支持cmake或者gradle,而baz…
因为Pycharm项目缓存C:\Users\wq\.PyCharm2017.2\system\caches下面的content.dat.storageData特别大,占用很多C盘空间,所以我就想办法,把这些设置移动到D盘 在网上找了一下,链接在这里https://intellij-support.jetbrains.com/hc/en-us/articles/207240985,可以实现,大概就是在C:\Users\wq\.PyCharm2017.2\config下新建一个idea.proper…
可能原因: 缺少smjavaagentapi.jar文件或者libsjavaagentapi.so缺少相关的依赖包. 解决方法: 1. 检查sso的lib下面是否有smjavaagentapi.jar 2.使用ldd命令检查sso的bin下面的ligsmjavaagentapi.so是否缺少依赖包,如果缺少,添加到/usr/lib目录下. 补充知识1: Implementation differences between smjavaagentapi and smagentapi http://…
#!/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby # This script installs to /usr/local only. To install elsewhere you can just # untar https://github.com/Homebrew/brew/tarball/master anywhere you like or # change the value of…
在抽取以太坊Java版本的Trie树部分时,遇到了一个问题: Exception in thread "main" java.lang.UnsatisfiedLinkError: Could not load library. Reasons: [no leveldbjni64-1.8 in java.library.path, no leveldbjni-1.8 in java.library.path, no leveldbjni in java.library.path] at…
解决方法: 右键项目工程-->>properties->>java bulid path -->>>libraries -->>add library -->>JRE System Library 根据你的需要进行选择版本即可…
很明显,以下的文字来自微软MSDN 链接http://msdn.microsoft.com/en-us/library/windows/desktop/ms681382(v=vs.85).aspx MSDN上分成了几个部分,查起来费事,统一放在这里了. 用kernel32.dll里的FormatMessage可以得到支持多语言的返回消息 有人把这些错误代码整理成了类,供参考 http://www.cnblogs.com/Sabre/p/3929264.html Note The informat…
转自:http://blog.163.com/ray_jun/blog/static/1670536422011101225132544/ 出处:http://superman474.blog.163.com/blog/static/120661462011101115811199/   关于iOS 5的本地文件储存Marco(Instapaper 的开发者)写过一篇很好的帖子阐述过相关问题,有兴趣的同学可以先阅读下他的文章然后再看下文. 在苹果开发者的论坛上也有许多相关问题的讨论贴: 安全地保…
简要说明,此次尝试安装 ReactNative 时当前 MacPro 版本为 10.13.6.Xcode 版本为 Version 9.4.1 (9F2000),按照官方的完整原生环境搭建流程一步步执行,可不料刚开始就遇到了一个很大的难关,具体如下: 官方推荐使用 Homebrew 来安装,随后便顺理成章的进入了 Homebrew 的主页,醒目的看到了 Install Homebrew 的标语,随后果断打开终端,执行了"/usr/bin/ruby -e "$(curl -fsSL htt…
File System Basics The file systems in OS X and iOS handle the persistent storage of data files, apps, and the files associated with the operating system itself. Therefore, the file system is one of the fundamental resources used by all processes. OS…
java.version Java Runtime Environment versionjava.vendor Java Runtime Environment vendorjava.vendor.url Java vendor URLjava.home Java installation directoryjava.vm.specification.version Java Virtual Machine specification versionjava.vm.specification.…