luyulin

Results 6 comments of luyulin

miniconda虚拟环境相对路径如下: miniconda |__ envs .......|__ my_env ..............|__ python.exe ..............|__ Lib ..............|.....|__ site-packages ..............|...........|__ PIL ..............|__ Library # PIL依赖这个目录下的一些文件 ....................|__ bin ....................|__ include ....................|__ lib ....................|__ ssl PyStand的目录结构如下: PyStand |__ runtime...

问题解决了,用conda安装的PIL,无法直接拷贝过来使用,但用pip安装的可以。

@jondy Thank you for your prompt reply. After applying the patch, I got the following error: ``` ImportError: /xxx/pyarmor_runtime_006111/pyarmor_runtime.so: symbol __fdelt_chk, version GLIBC_2.2.5 not defined in file libc.so.6 with link...

@jondy I don't know these hacking techniques, can you provide a patch file or give an example? Thanks

I wrote a simple patch: ```bash # patch.sh # patch pytransform3.so # GLIBC_2.14 -> GLIBC_2.2.5 xxd -s 0x22b0 -l 4 pytransform3.so | sed "s/22b0/22f0/" | xxd -r - pytransform3.so xxd...

@jondy Thanks! It has perfectly solved my problem. Thank you again, I learned a lot from you.