openssl-1.0.1p源码安装后,依赖于openssl.so库的应用报错libcrypto.so.1.0.0: no version information available 解法:1. 创建 /tmp/openssl.ld,如下: OPENSSL_1.0.0 { global: *;}; OPENSSL_1.0.1 { new*;}OPENSSL_1.0.0; OPENSSL_1.0.1p { new*;}OPENSSL_1.0.0; 2. 配置openssl加入./confi…
Solution: sudo ldconfig /lib/x86_64-linux-gnu/ #you need to use the libcrypto.so from /lib/x86_64-linux-gnu/ as library path instead of the Anaconda lib. export LD_LIBRARY_PATH=/home/user/anaconda3/lib/ #add a line in you environment config file, if…
昨晚想实现一个功能,需要把一个对象存储于ViewState中去,但在运行时,出现下面的异常. Type 'Insus.NET.PictureObject' in Assembly 'App_Code, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable. Description: An unhandled exception occurred during the executi…
$ composer install Loading composer repositories with package information Updating dependencies (including require-dev) Your requirements could not be resolved to an installable set of packages. Problem 1 - phpunit/phpunit 5.7.5 requires php ^5.6 ||…
ASP.NET Core 引用外部程序包的时候,有时会出现下面的错误: The type 'Object' is defined in an assembly that is not referenced. You must add a reference to assembly 'mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089'. Sample.Infrastructure..NETStan…