homebrew

Gnuplot PDF Terminal Exhibits Font Issues on Mac

泪湿孤枕 提交于 2020-06-24 22:31:10
问题 Out of the blue, my Gnuplot has started having issues with the pdfcairo terminal. The font in the produced PDF files is jammed as if the width of the individual characters was set to zero. I am using Gnuplot 5.2.7 on Mac OS, installed via homebrew. Here, a minimal not-working example: reset set terminal pdfcairo set output "mnwe.pdf" set xlabel "Time t" set ylabel "sin(t)" plot [0:2*pi] sin(x) with lines notitle which produces the following output: I suspect that the font issue occurred after

Gnuplot PDF Terminal Exhibits Font Issues on Mac

99封情书 提交于 2020-06-24 22:29:07
问题 Out of the blue, my Gnuplot has started having issues with the pdfcairo terminal. The font in the produced PDF files is jammed as if the width of the individual characters was set to zero. I am using Gnuplot 5.2.7 on Mac OS, installed via homebrew. Here, a minimal not-working example: reset set terminal pdfcairo set output "mnwe.pdf" set xlabel "Time t" set ylabel "sin(t)" plot [0:2*pi] sin(x) with lines notitle which produces the following output: I suspect that the font issue occurred after

Uninstall Redis on Mac OSX. Older version is running after installing update

☆樱花仙子☆ 提交于 2020-06-24 16:02:09
问题 On a mac, how to I find the older version of Redis and uninstall it completely? I'm using OSX and installed Redis using the following command brew install redis . The version installed by brew states redis-3.0.7 . However, when I run the command: redis-server the output states it's I'm running Redis 2.6.9 (00000000/0) 64 bit . I have no idea where this version was installed from. I have tried to download redis directly and use sudo make uninstall but got get this error: cd src &&

Uninstall Redis on Mac OSX. Older version is running after installing update

可紊 提交于 2020-06-24 16:02:05
问题 On a mac, how to I find the older version of Redis and uninstall it completely? I'm using OSX and installed Redis using the following command brew install redis . The version installed by brew states redis-3.0.7 . However, when I run the command: redis-server the output states it's I'm running Redis 2.6.9 (00000000/0) 64 bit . I have no idea where this version was installed from. I have tried to download redis directly and use sudo make uninstall but got get this error: cd src &&

Uninstall Redis on Mac OSX. Older version is running after installing update

喜你入骨 提交于 2020-06-24 16:01:50
问题 On a mac, how to I find the older version of Redis and uninstall it completely? I'm using OSX and installed Redis using the following command brew install redis . The version installed by brew states redis-3.0.7 . However, when I run the command: redis-server the output states it's I'm running Redis 2.6.9 (00000000/0) 64 bit . I have no idea where this version was installed from. I have tried to download redis directly and use sudo make uninstall but got get this error: cd src &&

How can I make homebrew's python and pyenv live together?

雨燕双飞 提交于 2020-06-23 23:54:16
问题 After switching to python 3.4.3 from 2.7.9 (which was quite simple), I often wish to test some of my scripts with python 2.7.9 before sharing them with colleagues. I am using a OSX yosemite platform with everything compiled from homebrew. The situation was quite ugly (setting PATH es and PYTHONPATH at each step) - until I discovered pyenv which does this very easily and is easily installed using homebrew. So far, so good. However, now that I am using this version of python, it does not

How can I make homebrew's python and pyenv live together?

让人想犯罪 __ 提交于 2020-06-23 23:48:09
问题 After switching to python 3.4.3 from 2.7.9 (which was quite simple), I often wish to test some of my scripts with python 2.7.9 before sharing them with colleagues. I am using a OSX yosemite platform with everything compiled from homebrew. The situation was quite ugly (setting PATH es and PYTHONPATH at each step) - until I discovered pyenv which does this very easily and is easily installed using homebrew. So far, so good. However, now that I am using this version of python, it does not

Tesseract Incompatible lib libpng16.16.dylib brew

旧城冷巷雨未停 提交于 2020-06-17 15:43:53
问题 dyld: Library not loaded: /usr/local/opt/libpng/lib/libpng16.16.dylib Referenced from: /usr/local/opt/leptonica/lib/liblept.5.dylib Reason: Incompatible library version: liblept.5.dylib requires version 54.0.0 or later, but libpng16.16.dylib provides version 29.0.0 Abort trap: 6 Have tried brew reinstall and upgrade, and tesseract reinstall, leptonica reinstall, deleted cache, deleted libs forcing new to be downloaded, nothing works. Not sure if this is a brew problem or leptonica, or the

How to change gfortran version

ぃ、小莉子 提交于 2020-06-17 13:19:09
问题 I am using Bellhop ray tracing algorithm for MacOS. I have downloaded the source code for MacOS without the binaries. I want to change my gfortran version from 9.2.0 to 8.3.0. I installed it using homebrew. I have version 9.2.0 installed. I have it installed at /usr/bin/ I cannot seem to find any commands online to change the version. gfortran -dumpversion This gave me my version number but I cannot seem to find a command to get a different version. I am working on macOS (Mojave V 10.14.6). I

How to install python3.4-dev for Mac?

怎甘沉沦 提交于 2020-06-16 02:13:22
问题 hey guys I have pip and homebrew I have tried pip search python3.4-dev and also brew search python and can't find python3.4-dev in any of them any ideas? 回答1: OS X does not have this package available. However, the package list can be found on the Debian site here. These packages come with py3.5 by default. Just try: brew install python3 回答2: Pip won't install Python itself. pyenv can help you install any specific Python version you want. Look here: https://github.com/yyuu/pyenv#installation