<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/36497?offset=40</link>
	<atom:link href="https://bioinformaticsonline.com/related/36497?offset=40" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/29479/how-to-install-perl-modules-on-mac-os-x-in-easy-steps</guid>
	<pubDate>Thu, 20 Oct 2016 07:26:29 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/29479/how-to-install-perl-modules-on-mac-os-x-in-easy-steps</link>
	<title><![CDATA[How to install Perl modules on Mac OS X in easy steps !!]]></title>
	<description><![CDATA[<p>Today at work, I learned how to install Perl modules using&nbsp;<a href="http://en.wikipedia.org/wiki/CPAN">CPAN</a>. It&rsquo;s a lot easier than I thought.</p><p>You see, for the past couple of years, I&rsquo;ve been a bit frustrated because OS X does not come with a whole lot of Perl modules pre-installed, and for all I googled, I couldn&rsquo;t find an &ldquo;idiot&rsquo;s&rdquo; guide for moderately-savvy-but-not-expert users like myself to install modules and dependencies on demand.</p><p>The only instructions I could find point to&nbsp;<a href="http://fink.sourceforge.net/">Fink</a>, which basically installs modules in a path that isn&rsquo;t included in the Perl @INC variable, meaning you have to manually specify the full path to the modules in every script &mdash; which is not a lot of fun if you&rsquo;re developing on OS X and deploying on Red Hat, for instance.</p><p>Moreover, Fink doesn&rsquo;t seem to make every module available, and it&rsquo;s not very easy to determine which Fink package you need to install if you need a particular module.</p><p>So, with a script that called on several apparently unavailable modules, and a deadline looming, I finally decided to suck it up and figure out how to use CPAN to install them:</p><h4>1) Make sure you have the Apple Developer Tools (XCode) installed.</h4><p>These are on one of your install discs, or available as a huge but free download from the&nbsp;<a href="https://developer.apple.com/xcode/">Apple Developer Connection</a>&nbsp;[free registration required] or the Mac App Store. I thought I had them, but apparently when we upgraded that computer to Tiger, they went missing.</p><p>If you don&rsquo;t have this stuff installed, your installation will fail with errors about unavailable commands.</p><h4>1.5) Install Command Line Tools (Recent XCode versions only)</h4><p>(Thank you to Tom Marchioro for informing me about this step.)</p><p>Older versions of XCode installed the command line tools (which are required to properly install CPAN modules) by default, but apparently newer ones do not. To check whether you have the command line tools already installed, run the following from the Terminal:</p><p><code>$ which make</code></p><p>This command checks the system for the &ldquo;<code>make</code>&rdquo; tool. If it spits out something like&nbsp;<code>/usr/bin/make</code>&nbsp;you&rsquo;re golden and can skip ahead to Step 2. If you just get a new prompt and no output, you&rsquo;ll need to install the tools:</p><ol>
<li>Launch XCode and bring up the Preferences panel.</li>
<li>Click on the Downloads tab</li>
<li>Click to install the Command Line Tools</li>
</ol><p>If you like, you can run&nbsp;<code>which make</code>&nbsp;again to confirm that everything&rsquo;s installed correctly.</p><h4>2) Configure CPAN.</h4><p><code>$ sudo perl -MCPAN -e shell</code></p><p><code>perl&gt; o conf init</code></p><p>This will prompt you for some settings. You can accept the defaults for almost everything (just hit &ldquo;return&rdquo;). The two things you must fill in are the path to&nbsp;<code>make</code>&nbsp;(which should be&nbsp;<code>/usr/bin/make</code>&nbsp;or the value returned when you run&nbsp;<code>which make</code>&nbsp;from the command line) and your choice of CPAN mirrors (which you actually choose don&rsquo;t really matter, but it won&rsquo;t let you finish until you select at least one). If you use a proxy or a very restrictive firewall, you may have to configure those settings as well.</p><p>If you skip Step 2, you may get errors about&nbsp;<code>make</code>&nbsp;being unavailable.</p><h4>3) Upgrade CPAN</h4><p><code>$ sudo perl -MCPAN -e 'install Bundle::CPAN'</code></p><p>Don&rsquo;t forget the&nbsp;<code>sudo</code>, or it&rsquo;ll fail with permissions errors, probably when doing something relatively unimportant like installing&nbsp;<code>man</code>&nbsp;files.</p><p>This will spend a long time downloading, testing, and compiling various files and dependencies. Bear with it. It will prompt you a few times about dependencies. You probably want to enter &ldquo;yes&rdquo;. I agreed to everything it asked me, and everything turned out fine. YMMV of course. If everything installs properly, it&rsquo;ll give you an &ldquo;OK&rdquo; at the end.</p><h4>4) Install your modules. For each module&hellip;.</h4><p><code>$ sudo perl -MCPAN -e 'install Bundle::Name'</code></p><p>or</p><p><code>$ sudo perl -MCPAN -e 'install Module::Name'</code></p><p>This will install the module&nbsp;<em>and</em>&nbsp;its dependencies. Nice, eh? Again, don&rsquo;t forget the&nbsp;<code>sudo</code>.</p><p>The first time you run this after upgrading CPAN, it may prompt you to configure again (see Step 2). If you accept its offer to try to configure itself automatically, it may just run through everything without a problem.</p><p>There are a couple of potential pitfalls with specific modules (such as the<code>LWP::UserAgent</code>&nbsp;/&nbsp;<code>HEAD</code>&nbsp;issue), but most have workarounds, and I haven&rsquo;t run into anything that wasn&rsquo;t easily recoverable.</p><p>And that&rsquo;s it!</p><p>Did you find this useful? Is there anything I missed?</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/37000/install-imagemagick-from-unix-source</guid>
	<pubDate>Wed, 20 Jun 2018 11:22:43 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/37000/install-imagemagick-from-unix-source</link>
	<title><![CDATA[Install ImageMagick from Unix Source]]></title>
	<description><![CDATA[<p>ImageMagick builds on a variety of Unix and Unix-like operating systems including Linux, Solaris, FreeBSD, Mac OS X, and others. A compiler is required and fortunately almost all modern Unix systems have one. Download&nbsp;<a href="https://www.imagemagick.org/download/ImageMagick.tar.gz">ImageMagick.tar.gz</a>from&nbsp;<a href="https://www.imagemagick.org/download">www.imagemagick.org</a>&nbsp;or a&nbsp;<a href="https://www.imagemagick.org/script/mirror.php">mirrors</a>&nbsp;and verify its&nbsp;<a href="https://www.imagemagick.org/download/digest.rdf">message digest</a>.</p><p>Unpack the distribution with this command:</p><pre><code>tar xvzf ImageMagick.tar.gz
</code></pre><p>Next configure and compile ImageMagick. Note the&nbsp;<a href="https://en.wikipedia.org/wiki/Pkg-config">pkg-config</a>&nbsp;script is required so that ImageMagick can find certain optional delegate libraries on your system. To configure, type:</p><pre><span>$ </span><span>cd ImageMagick-7.0.8</span><span><br /></span><span>$ </span><span>./configure</span><span><br /></span><span>$ </span><span>make</span></pre><p>If ImageMagick configured and compiled without complaint, you are ready to install it on your system. Administrator privileges are required to install. To install, type</p><pre><code>sudo make install
</code></pre><p>You may need to configure the dynamic linker run-time bindings:</p><pre><code>sudo ldconfig /usr/local/lib
</code></pre><p>Finally, verify the ImageMagick install worked properly, type</p><pre><code>/usr/local/bin/convert logo: logo.gif
</code></pre><p>For a more comprehensive test, run the ImageMagick validation suite. Ghostscript is a prerequisite, otherwise the EPS, PS, and PDF tests will fail.</p><pre><code>make check
</code></pre><p>Congratulations, you have a working ImageMagick distribution and you are ready to use ImageMagick to&nbsp;<a href="https://www.imagemagick.org/Usage/">convert, compose, or edit</a>&nbsp;your images or perhaps you'll want to use one of the&nbsp;<a href="https://www.imagemagick.org/script/develop.php">Application Program Interfaces</a>&nbsp;for C, C++, Perl, and others.</p><p>The above instructions will satisfy a great number of ImageMagick users, but we suspect a few will have additional questions or problems to consider. For example, what does one do if ImageMagick fails to configure or compile? Or what if you don't have administrator privileges and what if you don't want to install ImageMagick in the default&nbsp;<code>/../usr/local</code>&nbsp;folder? You will find the answer to these questions, and more, in&nbsp;<a href="https://www.imagemagick.org/script/advanced-unix-installation.php">Advanced Unix Source Installation</a>.</p><blockquote><p>jitendra@jitendra-UNLOCK-INSTALL[Downloads] git clone https://github.com/ImageMagick/ImageMagick.git []<br />Cloning into 'ImageMagick'...<br />remote: Counting objects: 124593, done.<br />remote: Compressing objects: 100% (77/77), done.<br />remote: Total 124593 (delta 94), reused 94 (delta 64), pack-reused 124452<br />Receiving objects: 100% (124593/124593), 76.94 MiB | 24.07 MiB/s, done.<br />Resolving deltas: 100% (106498/106498), done.<br />Checking connectivity... done.<br />jitendra@jitendra-UNLOCK-INSTALL[Downloads] cd ImageMagick []<br />jitendra@jitendra-UNLOCK-INSTALL[ImageMagick] make []<br />make: *** No targets specified and no makefile found. Stop.<br />jitendra@jitendra-UNLOCK-INSTALL[ImageMagick] ./configure []<br />checking build system type... x86_64-pc-linux-gnu<br />checking host system type... x86_64-pc-linux-gnu<br />checking target system type... x86_64-pc-linux-gnu<br />checking for a BSD-compatible install... /usr/bin/install -c<br />checking whether build environment is sane... yes<br />checking for a thread-safe mkdir -p... /bin/mkdir -p<br />checking for gawk... gawk<br />checking whether make sets $(MAKE)... yes<br />checking whether make supports nested variables... yes<br />checking whether UID '1000' is supported by ustar format... yes<br />checking whether GID '1000' is supported by ustar format... yes<br />checking how to create a ustar tar archive... gnutar<br />checking whether make supports nested variables... (cached) yes<br />configuring ImageMagick 7.0.8-3<br />checking whether build environment is sane... yes<br />checking for style of include used by make... GNU<br />checking for gcc... gcc<br />checking whether the C compiler works... yes<br />checking for C compiler default output file name... a.out<br />checking for suffix of executables... <br />checking whether we are cross compiling... no<br />checking for suffix of object files... o<br />checking whether we are using the GNU C compiler... yes<br />checking whether gcc accepts -g... yes<br />checking for gcc option to accept ISO C89... none needed<br />checking whether gcc understands -c and -o together... yes<br />checking dependency style of gcc... gcc3<br />checking how to run the C preprocessor... gcc -E<br />checking for grep that handles long lines and -e... /bin/grep<br />checking for egrep... /bin/grep -E<br />checking for ANSI C header files... yes<br />checking for sys/types.h... yes<br />checking for sys/stat.h... yes<br />checking for stdlib.h... yes<br />checking for string.h... yes<br />checking for memory.h... yes<br />checking for strings.h... yes<br />checking for inttypes.h... yes<br />checking for stdint.h... yes<br />checking for unistd.h... yes<br />checking minix/config.h usability... no<br />checking minix/config.h presence... no<br />checking for minix/config.h... no<br />checking whether it is safe to define __EXTENSIONS__... yes<br />checking for ar... ar<br />checking the archiver (ar) interface... ar<br />checking for gcc... (cached) gcc<br />checking whether we are using the GNU C compiler... (cached) yes<br />checking whether gcc accepts -g... (cached) yes<br />checking for gcc option to accept ISO C89... (cached) none needed<br />checking whether gcc understands -c and -o together... (cached) yes<br />checking dependency style of gcc... (cached) gcc3<br />checking for g++... g++<br />checking whether we are using the GNU C++ compiler... yes<br />checking whether g++ accepts -g... yes<br />checking dependency style of g++... gcc3<br />checking for gcc option to accept ISO C99... none needed<br />checking for gcc option to accept ISO Standard C... (cached) none needed<br />checking how to run the C preprocessor... gcc -E<br />checking for a sed that does not truncate output... /bin/sed<br />checking for fgrep... /bin/grep -F<br />checking how to print strings... printf<br />checking for ld used by gcc... /usr/bin/ld<br />checking if the linker (/usr/bin/ld) is GNU ld... yes<br />checking for gcc option to accept ISO C99... (cached) none needed<br />checking CFLAGS for maximum warnings... -Wall<br />checking whether make sets $(MAKE)... (cached) yes<br />checking whether ln -s works... yes<br />checking for a sed that does not truncate output... (cached) /bin/sed<br />checking for gawk... (cached) gawk<br />checking if malloc debugging is wanted... no<br />checking for __attribute__... yes<br />checking for C compiler vendor... gnu<br />checking for gcc architecture flag... <br />checking for x86 cpuid 0 output... d:756e6547:6c65746e:49656e69<br />checking for x86 cpuid 1 output... 306a9:3100800:7fbae3ff:bfebfbff<br />checking whether C compiler accepts -mtune=ivybridge... yes<br />checking for gcc architecture flag... -mtune=ivybridge<br />checking for pkg-config... /usr/bin/pkg-config<br />checking pkg-config is at least version 0.20... yes<br />checking size of size_t... 8<br />checking for C compiler vendor... (cached) gnu<br />./configure: line 9486: AX_COMPILER_FLAGS: command not found<br />checking CFLAGS for maximum warnings... (cached) -Wall<br />checking if LD -Wl,--version-script works... yes<br />checking for linker lazyload option... none<br />checking whether gcc is Clang... no<br />checking whether pthreads work with -pthread... yes<br />checking for joinable pthread attribute... PTHREAD_CREATE_JOINABLE<br />checking whether more special flags are required for pthreads... no<br />checking for PTHREAD_PRIO_INHERIT... yes<br />checking for gcc option to support OpenMP... -fopenmp<br />checking for pthread_join using gcc -pthread ... yes<br />checking whether gcc is Clang... (cached) no<br />checking for joinable pthread attribute... (cached) PTHREAD_CREATE_JOINABLE<br />checking whether more special flags are required for pthreads... (cached) no<br />checking for PTHREAD_PRIO_INHERIT... (cached) yes<br />checking whether we are using the Microsoft C compiler... no<br />checking CL/cl.h usability... no<br />checking CL/cl.h presence... no<br />checking for CL/cl.h... no<br />checking OpenCL/cl.h usability... no<br />checking OpenCL/cl.h presence... no<br />checking for OpenCL/cl.h... no<br />checking windows.h usability... no<br />checking windows.h presence... no<br />checking for windows.h... no<br />checking for OpenCL library... no<br />checking for special C compiler options needed for large files... no<br />checking for _FILE_OFFSET_BITS value needed for large files... no<br />checking for _LARGEFILE_SOURCE value needed for large files... no<br />checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B<br />checking the name lister (/usr/bin/nm -B) interface... BSD nm<br />checking the maximum length of command line arguments... 1572864<br />checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop<br />checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop<br />checking for /usr/bin/ld option to reload object files... -r<br />checking for objdump... objdump<br />checking how to recognize dependent libraries... pass_all<br />checking for dlltool... no<br />checking how to associate runtime and link libraries... printf %s\n<br />checking for archiver @FILE support... @<br />checking for strip... strip<br />checking for ranlib... ranlib<br />checking command to parse /usr/bin/nm -B output from gcc object... ok<br />checking for sysroot... no<br />checking for a working dd... /bin/dd<br />checking how to truncate binary pipes... /bin/dd bs=4096 count=1<br />checking for mt... mt<br />checking if mt is a manifest tool... no<br />checking for dlfcn.h... yes<br />checking for objdir... .libs<br />checking if gcc supports -fno-rtti -fno-exceptions... no<br />checking for gcc option to produce PIC... -fPIC -DPIC<br />checking if gcc PIC flag -fPIC -DPIC works... yes<br />checking if gcc static flag -static works... yes<br />checking if gcc supports -c -o file.o... yes<br />checking if gcc supports -c -o file.o... (cached) yes<br />checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />checking whether -lc should be explicitly linked in... no<br />checking dynamic linker characteristics... GNU/Linux ld.so<br />checking how to hardcode library paths into programs... immediate<br />checking for shl_load... no<br />checking for shl_load in -ldld... no<br />checking for dlopen... no<br />checking for dlopen in -ldl... yes<br />checking whether a program can dlopen itself... yes<br />checking whether a statically linked program can dlopen itself... no<br />checking whether stripping libraries is possible... yes<br />checking if libtool supports shared libraries... yes<br />checking whether to build shared libraries... yes<br />checking whether to build static libraries... yes<br />checking how to run the C++ preprocessor... g++ -E<br />checking for ld used by g++... /usr/bin/ld -m elf_x86_64<br />checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes<br />checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />checking for g++ option to produce PIC... -fPIC -DPIC<br />checking if g++ PIC flag -fPIC -DPIC works... yes<br />checking if g++ static flag -static works... yes<br />checking if g++ supports -c -o file.o... yes<br />checking if g++ supports -c -o file.o... (cached) yes<br />checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes<br />checking dynamic linker characteristics... (cached) GNU/Linux ld.so<br />checking how to hardcode library paths into programs... immediate<br />checking whether to enable maintainer-specific portions of Makefiles... no<br />checking whether gcc needs -traditional... no<br />checking for ANSI C header files... (cached) yes<br />checking whether to enable assertions... yes<br />checking for dirent.h that defines DIR... yes<br />checking for library containing opendir... none required<br />checking arm/limits.h usability... no<br />checking arm/limits.h presence... no<br />checking for arm/limits.h... no<br />checking arpa/inet.h usability... yes<br />checking arpa/inet.h presence... yes<br />checking for arpa/inet.h... yes<br />checking complex.h usability... yes<br />checking complex.h presence... yes<br />checking for complex.h... yes<br />checking errno.h usability... yes<br />checking errno.h presence... yes<br />checking for errno.h... yes<br />checking fcntl.h usability... yes<br />checking fcntl.h presence... yes<br />checking for fcntl.h... yes<br />checking limits.h usability... yes<br />checking limits.h presence... yes<br />checking for limits.h... yes<br />checking linux/unistd.h usability... yes<br />checking linux/unistd.h presence... yes<br />checking for linux/unistd.h... yes<br />checking locale.h usability... yes<br />checking locale.h presence... yes<br />checking for locale.h... yes<br />checking machine/param.h usability... no<br />checking machine/param.h presence... no<br />checking for machine/param.h... no<br />checking mach-o/dyld.h usability... no<br />checking mach-o/dyld.h presence... no<br />checking for mach-o/dyld.h... no<br />checking netinet/in.h usability... yes<br />checking netinet/in.h presence... yes<br />checking for netinet/in.h... yes<br />checking OS.h usability... no<br />checking OS.h presence... no<br />checking for OS.h... no<br />checking process.h usability... no<br />checking process.h presence... no<br />checking for process.h... no<br />checking sun_prefetch.h usability... no<br />checking sun_prefetch.h presence... no<br />checking for sun_prefetch.h... no<br />checking stdarg.h usability... yes<br />checking stdarg.h presence... yes<br />checking for stdarg.h... yes<br />checking sys/ipc.h usability... yes<br />checking sys/ipc.h presence... yes<br />checking for sys/ipc.h... yes<br />checking sys/mman.h usability... yes<br />checking sys/mman.h presence... yes<br />checking for sys/mman.h... yes<br />checking sys/resource.h usability... yes<br />checking sys/resource.h presence... yes<br />checking for sys/resource.h... yes<br />checking sys/sendfile.h usability... yes<br />checking sys/sendfile.h presence... yes<br />checking for sys/sendfile.h... yes<br />checking sys/socket.h usability... yes<br />checking sys/socket.h presence... yes<br />checking for sys/socket.h... yes<br />checking sys/syslimits.h usability... no<br />checking sys/syslimits.h presence... no<br />checking for sys/syslimits.h... no<br />checking sys/time.h usability... yes<br />checking sys/time.h presence... yes<br />checking for sys/time.h... yes<br />checking sys/timeb.h usability... yes<br />checking sys/timeb.h presence... yes<br />checking for sys/timeb.h... yes<br />checking sys/times.h usability... yes<br />checking sys/times.h presence... yes<br />checking for sys/times.h... yes<br />checking sys/wait.h usability... yes<br />checking sys/wait.h presence... yes<br />checking for sys/wait.h... yes<br />checking utime.h usability... yes<br />checking utime.h presence... yes<br />checking for utime.h... yes<br />checking wchar.h usability... yes<br />checking wchar.h presence... yes<br />checking for wchar.h... yes<br />checking xlocale.h usability... yes<br />checking xlocale.h presence... yes<br />checking for xlocale.h... yes<br />checking for stdbool.h that conforms to C99... yes<br />checking for _Bool... yes<br />checking for working volatile... yes<br />checking for preprocessor stringizing operator... yes<br />checking whether stat file-mode macros are broken... no<br />checking whether time.h and sys/time.h may both be included... yes<br />checking whether struct tm is in sys/time.h or time.h... time.h<br />checking for struct tm.tm_zone... yes<br />checking whether #! works in shell scripts... yes<br />checking whether char is unsigned... no<br />checking for an ANSI C-conforming const... yes<br />checking for inline... inline<br />checking for C/C++ restrict keyword... __restrict<br />checking for working volatile... (cached) yes<br />checking whether byte ordering is bigendian... no<br />checking for int8_t... yes<br />checking for int16_t... yes<br />checking for int32_t... yes<br />checking for int64_t... yes<br />checking for unsigned long long int... yes<br />checking for long long int... yes<br />checking for intmax_t... yes<br />checking for intptr_t... yes<br />checking for long double... yes<br />checking for long double with more range or precision than double... yes<br />checking for long long int... (cached) yes<br />checking for mbstate_t... yes<br />checking for mode_t... yes<br />checking for off_t... yes<br />checking for pid_t... yes<br />checking for size_t... yes<br />checking for ssize_t... yes<br />checking for uid_t in sys/types.h... yes<br />checking for uint8_t... yes<br />checking for uint16_t... yes<br />checking for uint32_t... yes<br />checking for uint64_t... yes<br />checking for uintmax_t... yes<br />checking for uintptr_t... yes<br />checking for unsigned long long int... (cached) yes<br />checking for locale_t... yes<br />checking for float_t... yes<br />checking for double_t... yes<br />checking size of float_t... 4<br />checking size of double_t... 8<br />checking size of float... 4<br />checking size of double... 8<br />checking size of long double... 16<br />checking size of signed short... 2<br />checking size of unsigned short... 2<br />checking size of signed int... 4<br />checking size of unsigned int... 4<br />checking size of signed long... 8<br />checking size of unsigned long... 8<br />checking size of signed long long... 8<br />checking size of unsigned long long... 8<br />checking size of off_t... 8<br />checking size of size_t... (cached) 8<br />checking size of ssize_t... 8<br />checking size of unsigned int*... 8<br />checking for signed 8-bit type... signed char<br />checking for unsigned 8-bit type... unsigned char<br />checking for signed 16-bit type... signed short<br />checking for unsigned 16-bit type... unsigned short<br />checking for signed 32-bit type... signed int<br />checking for unsigned 32-bit type... unsigned int<br />checking for signed 64-bit type... signed long<br />checking for unsigned 64-bit type... unsigned long<br />checking for unsigned maximum type... unsigned long<br />checking for pointer difference type... unsigned long<br />checking whether our compiler supports __func__... yes<br />checking whether closedir returns void... no<br />checking for stdlib.h... (cached) yes<br />checking for unistd.h... (cached) yes<br />checking for sys/param.h... yes<br />checking for getpagesize... yes<br />checking for working mmap... yes<br />checking vfork.h usability... no<br />checking vfork.h presence... no<br />checking for vfork.h... no<br />checking for fork... yes<br />checking for vfork... yes<br />checking for working fork... yes<br />checking for working vfork... (cached) yes<br />checking for working memcmp... yes<br />checking sys/select.h usability... yes<br />checking sys/select.h presence... yes<br />checking for sys/select.h... yes<br />checking for sys/socket.h... (cached) yes<br />checking types of arguments for select... int,fd_set *,struct timeval *<br />checking return type of signal handlers... void<br />checking for working strtod... yes<br />checking whether strerror_r is declared... yes<br />checking for strerror_r... yes<br />checking whether strerror_r returns char *... yes<br />checking for vprintf... yes<br />checking for _doprnt... no<br />checking for sqrt in -lm... yes<br />checking for library containing gethostbyname... none required<br />checking for library containing socket... none required<br />checking for acosh... yes<br />checking for _aligned_malloc... no<br />checking for asinh... yes<br />checking for atanh... yes<br />checking for atoll... yes<br />checking for atexit... yes<br />checking for cabs... yes<br />checking for carg... yes<br />checking for cimag... yes<br />checking for creal... yes<br />checking for clock... yes<br />checking for clock_getres... yes<br />checking for clock_gettime... yes<br />checking for ctime_r... yes<br />checking for directio... no<br />checking for erf... yes<br />checking for _exit... yes<br />checking for execvp... yes<br />checking for fchmod... yes<br />checking for floor... yes<br />checking for fork... (cached) yes<br />checking for ftime... yes<br />checking for ftruncate... yes<br />checking for getc_unlocked... yes<br />checking for getcwd... yes<br />checking for getpid... yes<br />checking for getexecname... no<br />checking for getdtablesize... yes<br />checking for getpagesize... (cached) yes<br />checking for getrlimit... yes<br />checking for getrusage... yes<br />checking for gettimeofday... yes<br />checking for gmtime_r... yes<br />checking for isnan... yes<br />checking for j0... yes<br />checking for j1... yes<br />checking for lltostr... no<br />checking for localtime_r... yes<br />checking for lstat... yes<br />checking for memmove... yes<br />checking for memset... yes<br />checking for mkstemp... yes<br />checking for munmap... yes<br />checking for nanosleep... yes<br />checking for newlocale... yes<br />checking for _NSGetExecutablePath... no<br />checking for pclose... yes<br />checking for _pclose... no<br />checking for poll... yes<br />checking for popen... yes<br />checking for _popen... no<br />checking for posix_fadvise... yes<br />checking for posix_fallocate... yes<br />checking for posix_madvise... yes<br />checking for posix_memalign... yes<br />checking for posix_spawnp... yes<br />checking for pow... yes<br />checking for pread... yes<br />checking for pwrite... yes<br />checking for qsort_r... yes<br />checking for raise... yes<br />checking for rand_r... yes<br />checking for readlink... yes<br />checking for realpath... yes<br />checking for select... yes<br />checking for seekdir... yes<br />checking for sendfile... yes<br />checking for setlocale... yes<br />checking for socket... yes<br />checking for sqrt... yes<br />checking for setvbuf... yes<br />checking for stat... yes<br />checking for strchr... yes<br />checking for strrchr... yes<br />checking for strcspn... yes<br />checking for strdup... yes<br />checking for strpbrk... yes<br />checking for strspn... yes<br />checking for strstr... yes<br />checking for strtod... (cached) yes<br />checking for strtod_l... yes<br />checking for strtol... yes<br />checking for strtoul... yes<br />checking for symlink... yes<br />checking for sysconf... yes<br />checking for sigemptyset... yes<br />checking for sigaction... yes<br />checking for spawnvp... no<br />checking for strerror... yes<br />checking for strlcat... no<br />checking for strlcpy... no<br />checking for strcasecmp... yes<br />checking for strncasecmp... yes<br />checking for telldir... yes<br />checking for tempnam... yes<br />checking for times... yes<br />checking for ulltostr... no<br />checking for uselocale... yes<br />checking for usleep... yes<br />checking for utime... yes<br />checking for vfprintf... yes<br />checking for vfprintf_l... no<br />checking for vsprintf... yes<br />checking for vsnprintf... yes<br />checking for vsnprintf_l... no<br />checking for waitpid... yes<br />checking for _wfopen... no<br />checking for _wstat... no<br />checking for library containing clock_gettime... none required<br />checking whether clock_gettime supports CLOCK_REALTIME... yes<br />checking whether pread is declared... yes<br />checking whether pwrite is declared... yes<br />checking whether strlcpy is declared... no<br />checking whether vsnprintf is declared... yes<br />checking whether we are using the GNU C++ compiler... (cached) yes<br />checking whether g++ accepts -g... (cached) yes<br />checking dependency style of g++... (cached) gcc3<br />checking whether the compiler recognizes bool as a built-in type... yes<br />checking whether the compiler implements namespaces... yes<br />checking if g++ supports namespace std... yes<br />checking whether the compiler supports ISO C++ standard library... yes<br />checking for g++ option to support OpenMP... -fopenmp<br />checking whether C++ compiler is sufficient for Magick++... yes<br />checking for X11 configure files... <br />checking for GOMP_parallel_start in -lgomp... yes<br />-------------------------------------------------------------<br />checking for BZLIB... <br />checking bzlib.h usability... no<br />checking bzlib.h presence... no<br />checking for bzlib.h... no<br />checking for BZ2_bzDecompress in -lbz2... no<br />checking if BZLIB package is complete... no<br />checking for X... libraries , headers <br />checking for gethostbyname... yes<br />checking for connect... yes<br />checking for remove... yes<br />checking for shmat... yes<br />checking for IceConnectionNumber in -lICE... yes<br />-------------------------------------------------------------<br />checking for X11... <br />checking for shmctl... yes<br />checking for XShmAttach in -lXext... yes<br />checking for XShapeCombineMask in -lXext... yes<br />checking for XtSetEventDispatcher in -lXt... yes<br />-------------------------------------------------------------<br />checking for ZLIB... yes</p><p>-------------------------------------------------------------<br />checking for DPS... <br />checking DPS/dpsXclient.h usability... no<br />checking DPS/dpsXclient.h presence... no<br />checking for DPS/dpsXclient.h... no<br />checking for DPSInitialize in -ldps... no<br />checking for DPSInitialize in -ldps... no<br />checking for XDPSPixelsPerPoint in -ldpstk... no<br />checking if DPS package is complete... no<br />-------------------------------------------------------------<br />checking for fftw3... no</p><p>-------------------------------------------------------------<br />checking for FLIF... <br />checking flif.h usability... no<br />checking flif.h presence... no<br />checking for flif.h... no<br />checking for flif_create_decoder in -lflif... no<br />checking if FLIF package is complete... no<br />-------------------------------------------------------------<br />checking for FlashPIX... <br />checking fpxlib.h usability... no<br />checking fpxlib.h presence... no<br />checking for fpxlib.h... no<br />checking for FPX_OpenImageByFilename in -lfpx... no<br />checking if FlashPIX package is complete... no<br />-------------------------------------------------------------<br />checking for ddjvuapi... no</p><p>-------------------------------------------------------------<br />checking for FONTCONFIG... yes</p><p>-------------------------------------------------------------<br />checking for FREETYPE... yes</p><p>-------------------------------------------------------------<br />checking for RAQM... no</p><p>-------------------------------------------------------------<br />checking for GVC... no</p><p>-------------------------------------------------------------<br />checking for HEIF... no</p><p>-------------------------------------------------------------<br />checking for JBIG... <br />checking jbig.h usability... yes<br />checking jbig.h presence... yes<br />checking for jbig.h... yes<br />checking for jbg_dec_init in -ljbig... yes<br />checking if JBIG package is complete... yes<br />-------------------------------------------------------------<br />checking for JPEG... <br />checking jconfig.h usability... yes<br />checking jconfig.h presence... yes<br />checking for jconfig.h... yes<br />checking jerror.h usability... yes<br />checking jerror.h presence... yes<br />checking for jerror.h... yes<br />checking jmorecfg.h usability... yes<br />checking jmorecfg.h presence... yes<br />checking for jmorecfg.h... yes<br />checking jpeglib.h usability... yes<br />checking jpeglib.h presence... yes<br />checking for jpeglib.h... yes<br />checking for jpeg_read_header in -ljpeg... yes<br />checking for JPEG library is version 6b or later... yes<br />checking if JPEG package is complete... yes<br />-------------------------------------------------------------<br />checking for LCMS2... no</p><p>-------------------------------------------------------------<br />checking for LIBOPENJP2... no</p><p>-------------------------------------------------------------<br />checking for LQR... no</p><p>-------------------------------------------------------------<br />checking for LZMA... yes</p><p>-------------------------------------------------------------<br />checking for OPENEXR... no</p><p>-------------------------------------------------------------<br />checking for PANGO... yes</p><p>checking for PANGO... yes</p><p>-------------------------------------------------------------<br />checking for PNG... yes</p><p>-------------------------------------------------------------<br />checking for RAW_R... no</p><p>-------------------------------------------------------------<br />checking for TIFF... <br />checking tiff.h usability... yes<br />checking tiff.h presence... yes<br />checking for tiff.h... yes<br />checking tiffio.h usability... yes<br />checking tiffio.h presence... yes<br />checking for tiffio.h... yes<br />checking for TIFFOpen in -ltiff... yes<br />checking for TIFFClientOpen in -ltiff... yes<br />checking for TIFFIsByteSwapped in -ltiff... yes<br />checking for TIFFReadRGBATile in -ltiff... yes<br />checking for TIFFReadRGBAStrip in -ltiff... yes<br />checking if TIFF package is complete... yes<br />checking tiffconf.h usability... yes<br />checking tiffconf.h presence... yes<br />checking for tiffconf.h... yes<br />checking for TIFFIsCODECConfigured... yes<br />checking for TIFFMergeFieldInfo... yes<br />checking for TIFFIsBigEndian... yes<br />checking for TIFFReadEXIFDirectory... yes<br />checking for TIFFSetErrorHandlerExt... yes<br />checking for TIFFSetTagExtender... yes<br />checking for TIFFSetWarningHandlerExt... yes<br />checking for TIFFSwabArrayOfTriples... yes<br />-------------------------------------------------------------<br />checking for WEBP... no<br />checking for WEBPMUX... no</p><p>checking for WMF support ... <br />checking for libwmf/ipa.h... no<br />checking if WMF package is complete ... no<br />-------------------------------------------------------------<br />checking for XML... yes</p><p>-------------------------------------------------------------<br />checking for ImageMagick delegate programs... <br />checking for bpgdec... bpgdec<br />checking for bpgenc... bpgenc<br />checking for blender... blender<br />checking for xdg-open... /usr/bin/xdg-open<br />checking for ufraw-batch... ufraw-batch<br />checking for soffice... /usr/bin/soffice<br />checking for dvips... /usr/bin/dvips<br />checking for magick... magick<br />checking for magick... magick<br />checking for xterm... /usr/bin/xterm<br />checking for dot... /usr/bin/dot<br />checking for hp2xx... hp2xx<br />checking for html2ps... html2ps<br />checking for ilbmtoppm... /usr/bin/ilbmtoppm<br />checking for ppmtoilbm... /usr/bin/ppmtoilbm<br />checking for JxrDecApp... JxrDecApp<br />checking for JxrEncApp... JxrEncApp<br />checking for lepton... lepton<br />checking for lp... /usr/bin/lp<br />checking for lpr... /usr/bin/lpr<br />checking for gimp... /usr/bin/gimp<br />checking for magick... magick<br />checking for avconv... avconv<br />checking for ffmpeg... (cached) avconv<br />checking for avconv... avconv<br />checking for ffmpeg... (cached) avconv<br />checking for mrsidgeodecode... mrsidgeodecode<br />checking for mv... /bin/mv<br />checking for pcl6... pcl6<br />checking for gsx... no<br />checking for gsc... no<br />checking for gs... /usr/bin/gs<br />checking for rm... /bin/rm<br />checking for rsvg-convert... rsvg-convert<br />checking for inkscape... inkscape<br />checking for uniconvertor... uniconvertor<br />checking for dwebp... dwebp<br />checking for cwebp... cwebp<br />checking for curl... /usr/bin/curl<br />checking for gxps... gxps<br />checking for Apple fonts directory... not found!<br />checking for Dejavu fonts directory... not found!<br />checking for Ghostscript fonts directory... /usr/share/fonts/type1/gsfonts/<br />checking for URW-base35 fonts directory... not found!<br />checking for Windows fonts directory... not found!<br />checking for gnutar... no<br />checking for gtar... no<br />checking for tar... tar<br />checking for perl... perl<br />checking for rpmbuild... no<br />checking for rpm... no<br />checking for 7za... 7za<br />checking for zip... zip<br />-------------------------------------------------------------<br />checking for Ghostscript... <br />checking for Ghostscript version... 9.18<br />checking for gs color device... pnmraw<br />checking for gs alpha device... pngalpha<br />checking for gs CMYK device... pamcmyk32<br />checking for gs mono device... pbmraw<br />checking for gs PDF writing device... pdfwrite<br />checking for gs PS writing device... ps2write<br />checking for gs EPS writing device... eps2write<br />-------------------------------------------------------------<br />Update ImageMagick configuration<br />checking that generated files are newer than configure... done<br />checking that generated files are newer than configure... done<br />configure: creating ./config.status<br />config.status: creating common.shi<br />config.status: creating config/configure.xml<br />config.status: creating config/delegates.xml<br />config.status: creating config/ImageMagick.rdf<br />config.status: creating config/MagickCore.dox<br />config.status: creating config/MagickWand.dox<br />config.status: creating config/Magick++.dox<br />config.status: creating config/type-apple.xml<br />config.status: creating config/type-dejavu.xml<br />config.status: creating config/type-ghostscript.xml<br />config.status: creating config/type-urw-base35.xml<br />config.status: creating config/type-windows.xml<br />config.status: creating config/type.xml<br />config.status: creating ImageMagick.spec<br />config.status: creating Magick++/bin/Magick++-config<br />config.status: creating MagickCore/ImageMagick.pc<br />config.status: creating Magick++/lib/Magick++.pc<br />config.status: creating MagickCore/MagickCore-config<br />config.status: creating MagickCore/MagickCore.pc<br />config.status: creating MagickCore/version.h<br />config.status: creating Makefile<br />config.status: creating magick.sh<br />config.status: creating PerlMagick/check.sh<br />config.status: creating PerlMagick/default/Magick.pm<br />config.status: creating PerlMagick/Makefile.PL<br />config.status: creating PerlMagick/default/Makefile.PL<br />config.status: creating PerlMagick/quantum/Makefile.PL<br />config.status: creating PerlMagick/quantum/quantum.pm<br />config.status: creating PerlMagick/quantum/quantum.xs<br />config.status: creating PerlMagick/quantum/typemap<br />config.status: creating utilities/animate.1<br />config.status: creating utilities/compare.1<br />config.status: creating utilities/composite.1<br />config.status: creating utilities/conjure.1<br />config.status: creating utilities/convert.1<br />config.status: creating utilities/display.1<br />config.status: creating utilities/identify.1<br />config.status: creating utilities/ImageMagick.1<br />config.status: creating utilities/import.1<br />config.status: creating utilities/magick.1<br />config.status: creating utilities/magick-script.1<br />config.status: creating utilities/mogrify.1<br />config.status: creating utilities/montage.1<br />config.status: creating utilities/stream.1<br />config.status: creating MagickWand/MagickWand-config<br />config.status: creating MagickWand/MagickWand.pc<br />config.status: creating config/config.h<br />config.status: executing MagickCore/magick-baseconfig.h commands<br />config.status: creating MagickCore/magick-baseconfig.h - prefix MAGICKCORE for config/config.h defines<br />config.status: executing depfiles commands<br />config.status: executing libtool commands<br />config.status: executing default commands<br />config.status: executing magick.sh.in commands<br />config.status: executing MagickCore-config.in commands<br />config.status: executing MagickWand-config.in commands<br />config.status: executing Magick++-config.in commands<br />config.status: executing PerlMagick/check.sh.in commands<br />configure:<br />==============================================================================<br />ImageMagick is configured as follows. Please verify that this configuration<br />matches your expectations.</p><p>Host system type: x86_64-pc-linux-gnu<br /> Build system type: x86_64-pc-linux-gnu</p><p>Option Value<br /> ------------------------------------------------------------------------------<br /> Shared libraries --enable-shared=yes yes<br /> Static libraries --enable-static=yes yes<br /> Build utilities --with-utilities=yes yes</p><p>&nbsp;</p><p>/usr/bin/install -c -m 644 ./www/api/MagickCore/tab_l.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/tab_r.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/tabs.css /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/threshold_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/timer_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/token_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/transform_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/tree.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/type_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/utility_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/version_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/vms_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/widget_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xml-tree_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />/usr/bin/install -c -m 644 ./www/api/MagickCore/xwindow-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickCore<br />mkdir -p -- /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/animate_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/annotated.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/classes.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/compare_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/composite_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/conjure_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/convert_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/deprecate_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/dir_101f7ac0a894e32543a314e85b2e1524.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/dirs.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/display_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/doxygen.css /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/doxygen.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawing-wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/drawtest_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/files.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2blank.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2doc.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2folderclosed.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2folderopen.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2lastnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2link.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2mlastnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2mnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2node.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2plastnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2pnode.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/ftv2vertline.png /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/functions.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/functions_vars.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x61.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x62.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x63.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x64.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x65.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x67.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x69.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6d.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6e.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x6f.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x70.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x71.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x72.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x73.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x74.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x75.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x77.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_0x78.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_defs.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_enum.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_eval.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x63.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x64.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x67.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x69.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x6d.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x6e.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x70.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x72.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func_0x73.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_func.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_type.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/globals_vars.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/identify_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/import_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/index.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-image_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-property_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick__wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/MagickWand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick__wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/MagickWand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/magick-wand-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/main.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/mogrify-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/montage_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-iterator_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand-private_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/pixel-wand-private_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/stream_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__CompositeOptions.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__DrawingWand.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__DrawVTable.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__MagickWand.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__PixelIterator.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/struct__PixelWand.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/studio_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/studio_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_b.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_l.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tab_r.gif /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tabs.css /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/tree.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8h.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wand_8h-source.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br />/usr/bin/install -c -m 644 ./www/api/MagickWand/wandtest_8c.html /usr/local/share/doc/ImageMagick-7/www/api/MagickWand<br /> /bin/mkdir -p '/usr/local/share/doc/ImageMagick-7'<br /> /usr/bin/install -c -m 644 LICENSE ChangeLog NEWS.txt '/usr/local/share/doc/ImageMagick-7'<br /> /bin/mkdir -p '/usr/local/include/ImageMagick-7/Magick++'<br /> /usr/bin/install -c -m 644 Magick++/lib/Magick++/Blob.h Magick++/lib/Magick++/CoderInfo.h Magick++/lib/Magick++/Color.h Magick++/lib/Magick++/Drawable.h Magick++/lib/Magick++/Exception.h Magick++/lib/Magick++/Functions.h Magick++/lib/Magick++/Geometry.h Magick++/lib/Magick++/Image.h Magick++/lib/Magick++/Include.h Magick++/lib/Magick++/Montage.h Magick++/lib/Magick++/Pixels.h Magick++/lib/Magick++/ResourceLimits.h Magick++/lib/Magick++/SecurityPolicy.h Magick++/lib/Magick++/Statistic.h Magick++/lib/Magick++/STL.h Magick++/lib/Magick++/TypeMetric.h '/usr/local/include/ImageMagick-7/Magick++'<br /> /bin/mkdir -p '/usr/local/include/ImageMagick-7'<br /> /usr/bin/install -c -m 644 Magick++/lib/Magick++.h '/usr/local/include/ImageMagick-7'<br /> /bin/mkdir -p '/usr/local/share/man/man1'<br /> /usr/bin/install -c -m 644 MagickCore/MagickCore-config.1 MagickWand/MagickWand-config.1 Magick++/bin/Magick++-config.1 utilities/ImageMagick.1 utilities/animate.1 utilities/compare.1 utilities/composite.1 utilities/conjure.1 utilities/convert.1 utilities/display.1 utilities/identify.1 utilities/import.1 utilities/magick.1 utilities/magick-script.1 utilities/mogrify.1 utilities/montage.1 utilities/stream.1 '/usr/local/share/man/man1'<br /> /bin/mkdir -p '/usr/local/lib/pkgconfig'<br /> /usr/bin/install -c -m 644 MagickCore/ImageMagick.pc MagickCore/MagickCore.pc MagickCore/ImageMagick-7.Q16HDRI.pc MagickCore/MagickCore-7.Q16HDRI.pc MagickWand/MagickWand.pc MagickWand/MagickWand-7.Q16HDRI.pc Magick++/lib/Magick++.pc Magick++/lib/Magick++-7.Q16HDRI.pc '/usr/local/lib/pkgconfig'<br />make[2]: Leaving directory '/home/jitendra/Downloads/ImageMagick'<br />make[1]: Leaving directory '/home/jitendra/Downloads/ImageMagick'<br />jitendra@jitendra-UNLOCK-INSTALL[ImageMagick] []</p></blockquote>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/871/postdoctoral-position-in-bioinformatics-sweden</guid>
  <pubDate>Sun, 14 Jul 2013 13:49:57 -0500</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral position in bioinformatics @ Sweden]]></title>
  <description><![CDATA[
<p>Information about the department<br />The Department of Mathematical Sciences at Chalmers University of Technology and the University of Gothenburg has about 170 faculty and staff and is the largest department of mathematical sciences in the Nordic countries. The department belongs to both Chalmers University of Technology and the University of Gothenburg (for more information see http://www.chalmers.se/math/).</p>

<p>Job description<br />We are looking for a motivated, self-driven post-doctoral researcher to work with large-scale sequence data analysis. The position is for 24 months and located at Mathematical Statistics, Department of Mathematical Sciences in Erik Kristiansson’s research group. We are focused on methods development for and analysis of next generation DNA sequencing, in particular comparative metagenomics and gene expression analysis (RNA-seq). We have strong interdisciplinary profile and are actively collaborating with several experimental groups, especially within the environmental sciences, ecology, infectious diseases and cancer genomics. More information is available at http://bioinformatics.math.chalmers.se.</p>

<p>The Post-doctoral position is an appointment that offers an opportunity to qualify for further research positions within academia or industry. The majority of your working time is devoted to your own research, normally as a member of a research group. Included in your work is also to take part in supervision of Ph.D. students and M.Sc thesis students. Teaching of undergraduate students may also be included to a small extent.</p>

<p>The employment is limited to a maximum of 2 years (1+1).</p>

<p>Qualifications<br />The applicant should have Ph.D. degree preferably in bioinformatics, mathematics, statistics, computer science or equivalent by the start of the appointment. Experience from analysis of large-scale data, in particular from next generation DNA sequencing, is highly valued. The applicant should also be proficient in programming (e.g. Python/Java/C) and comfortable with Unix/Linux systems. Interaction with experimental biologists is central and good collaborative skills are therefore important. Fluency in written and spoken English is a strong requirement. As a post-doctoral researcher you are expected to work independently and to be able to supervise/co-supervise PhD and Master’s students.</p>

<p>Application procedure<br />The application should be marked with Ref 20130126 and written in English. The application should be sent electronically via Chalmers webpage.</p>

<p>Application deadline: September 8, 2013.</p>

<p>For questions, please contact: <br />Ass prof. Erik Kristiansson, Matematiska Vetenskaper, erik.kristiansson@chalmers.se, +46 31-772 3521, +46 70-5259751.</p>

<p>Chalmers continuously strive to be an attractive employer. Equality and diversity are substantial foundations in all activities at Chalmers.</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/14186/pybedtools</guid>
	<pubDate>Wed, 20 Aug 2014 01:03:41 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/14186/pybedtools</link>
	<title><![CDATA[pybedtools]]></title>
	<description><![CDATA[<p>pybedtools is a Python wrapper for Aaron Quinlan's BEDtools programs (https://github.com/arq5x/bedtools), which are widely used for genomic interval manipulation or "genome algebra". pybedtools extends BEDTools by offering feature-level manipulations from with Python. See full online documentation, including installation instructions, at http://pythonhosted.org/pybedtools/.</p><p>More at http://pythonhosted.org/pybedtools/</p><p>A powerful toolset for genome arithmetic.http://code.google.com/p/bedtools/</p>]]></description>
	<dc:creator>Shruti Paniwala</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/22961/bioscripts</guid>
	<pubDate>Sun, 28 Jun 2015 07:46:14 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/22961/bioscripts</link>
	<title><![CDATA[BioScripts]]></title>
	<description><![CDATA[<p>You are requested to please bookmark collection of bioinformatics tools, scripts, codes that can be pieced together in a very easy and flexible manner to perform both simple and complex bioinformatics tasks.</p>
<p>The next-generation sequencing included whole genome sequencing(WGS), transcriptome sequencing (whole cDNA sequencing, RNA-seq), digital gene expression sequencing (Tag-Seq), ChIP-Seq, and so on. And there are many sequencing platform to generate sequece, as well know Sanger/ABi(the frist generation), Solexa/illumina, SOLiD/ABi, 454/Roche. But thier sequence format is different, also they have different error type. High quality data is very important for further analysis or data mining. There are many pipeline for raw sequence quality analysis and control with few of process for reporting reads quality statistical details, trimming, filtering, and error correction. Please bookmarks them for the benefits of bioinformatics community.</p>
<p>https://code.google.com/p/biowiki/</p>
<p>https://code.google.com/p/ngs-pipeline/source/browse/#svn%2Ftrunk</p>
<p>NGSand Perl scripts https://code.google.com/hosting/search?q=NGS+perl&amp;projectsearch=Search+projects</p>
<p>NGS and Python scripts https://code.google.com/hosting/search?q=NGS+Python&amp;projectsearch=Search+projects</p><p>Address of the bookmark: <a href="https://code.google.com/hosting/search?q=bioinformatics&amp;sa=Search" rel="nofollow">https://code.google.com/hosting/search?q=bioinformatics&amp;sa=Search</a></p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/33398/tiny-python36-notebook</guid>
	<pubDate>Sat, 03 Jun 2017 03:16:28 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/33398/tiny-python36-notebook</link>
	<title><![CDATA[Tiny Python3.6 Notebook]]></title>
	<description><![CDATA[<p><span>This is not so much an instructional manual, but rather notes, tables, and examples for Python syntax. It was created by the author as an additional resource during training, meant to be distributed as a physical notebook. Participants (who favor the physical characteristics of dead tree material) could add their own notes, thoughts, and have a valuable reference of curated examples.</span></p><p>Address of the bookmark: <a href="https://github.com/mattharrison/Tiny-Python-3.6-Notebook/blob/master/python.rst" rel="nofollow">https://github.com/mattharrison/Tiny-Python-3.6-Notebook/blob/master/python.rst</a></p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/40221/dash-a-web-application-framework-that-provides-pure-python-abstraction-around-html-css-and-javascript</guid>
	<pubDate>Tue, 05 Nov 2019 06:39:48 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/40221/dash-a-web-application-framework-that-provides-pure-python-abstraction-around-html-css-and-javascript</link>
	<title><![CDATA[Dash: a web application framework that provides pure Python abstraction around HTML, CSS, and JavaScript.]]></title>
	<description><![CDATA[<p style="margin-top: 0px; margin-bottom: 0.75rem;">Dash is a web application framework that provides pure Python abstraction around HTML, CSS, and JavaScript.</p>
<p style="margin-top: 0px; margin-bottom: 0.75rem;">Dash Bio is a suite of bioinformatics components that make it simpler to analyze and visualize bioinformatics data and interact with them in a Dash application.</p>
<p style="margin-top: 0px; margin-bottom: 0.75rem;">The source can be found on GitHub at<span>&nbsp;</span><a href="https://github.com/plotly/dash-bio">plotly/dash-bio</a>.</p>
<p style="margin-top: 0px; margin-bottom: 0.75rem;">These docs are using Dash Bio version 0.1.4.</p><p>Address of the bookmark: <a href="https://dash.plot.ly/dash-bio" rel="nofollow">https://dash.plot.ly/dash-bio</a></p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/41043/postdoctoral-scientist-genome-analytics-genome-bioinformatics-mf</guid>
  <pubDate>Sun, 16 Feb 2020 02:57:40 -0600</pubDate>
  <link></link>
  <title><![CDATA[Postdoctoral scientist genome analytics/ genome bioinformatics (m/f/*)]]></title>
  <description><![CDATA[
<p>https://www.uksh.de/jobs/Stellenangebote-nr-20190570-p-8.html<br />Your profile:<br />Degree in bioinformatics, biostatistics, or equivalent<br />Experience in the processing and analysis of large-scale genomics data using compute clusters / high-performance computing<br />Strong competence in working in Unix/Linux environments (shell)<br />Strong programming skills (in particular: Python, R, Perl)<br />Experience with using git and snakemake<br />Fluent English language skills, both spoken and written<br />Strong communication skills and motivation to work in a young, interdisciplinary, dynamic team</p>

<p>Additional Information:</p>

<p>If you have any questions about scientific aspects of this position, please contact Prof. Lars Bertram, head of LIGA (lars.bertram@uni-luebeck.de).</p>

<p>Please contact Ms. Anna Wolbert for further questions about administrative details (recruiting@uksh.de).</p>

<p>Weitere Informationen erhalten Sie auch unter www.uksh.de/karriere.</p>

<p>Wir freuen uns auf Ihre Bewerbung bis zum 15.03.2020 unter Angabe unserer Ausschreibungsnummer 20190570.119.CL.</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/blog/view/44633/learn-python-with-example</guid>
	<pubDate>Tue, 06 Aug 2024 23:51:51 -0500</pubDate>
	<link>https://bioinformaticsonline.com/blog/view/44633/learn-python-with-example</link>
	<title><![CDATA[Learn python with example]]></title>
	<description><![CDATA[<div><div><div><p>There are over 21 unique&nbsp;Python project&nbsp;walkthroughs in this content that range from beginner to advanced. See below for the timestamps for these projects:</p><p><span>00:00:00 | How To Navigate These Projects</span><br /><span>---</span><br /><span>00:01:46 | #1 - Quiz Game (Easy)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F5-Python-Projects-For-Beginners%2Fblob%2Fmain%2Fquiz_game.py" target="_blank">https://github.com/techwithtim/5-Python-Projects-For-Beginners/blob/main/quiz_game.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>00:22:00 | #2 - Number Guessing Game (Easy)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F5-Python-Projects-For-Beginners%2Fblob%2Fmain%2Fnumber_guesser.py" target="_blank">https://github.com/techwithtim/5-Python-Projects-For-Beginners/blob/main/number_guesser.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>00:39:49 | #3 - Rock, Paper, Scissors (Easy)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F5-Python-Projects-For-Beginners%2Fblob%2Fmain%2Frock_paper_scissors.py" target="_blank">https://github.com/techwithtim/5-Python-Projects-For-Beginners/blob/main/rock_paper_scissors.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>00:54:40 | #4 - Choose Your Own Adventure Game (Easy)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F5-Python-Projects-For-Beginners%2Fblob%2Fmain%2Fchoose_your_own_adventure.py" target="_blank">https://github.com/techwithtim/5-Python-Projects-For-Beginners/blob/main/choose_your_own_adventure.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>01:06:47 | #5 - Password Manager (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F5-Python-Projects-For-Beginners%2F" target="_blank">https://github.com/techwithtim/5-Python-Projects-For-Beginners/</a><span>&nbsp;</span><br /><span>Fernet Cryptography Documentation:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fcryptography.io%2Fen%2Flatest%2Ffernet%2F" target="_blank">https://cryptography.io/en/latest/fernet/</a><span>&nbsp;</span><br /><span>---</span><br /><span>01:37:37 | #6 - PIG (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F3-Mini-Python-Projects%2Fblob%2Fmain%2Fproject1.py" target="_blank">https://github.com/techwithtim/3-Mini-Python-Projects/blob/main/project1.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>01:59:07 | #7 - Madlibs Generator (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F3-Mini-Python-Projects%2Fblob%2Fmain%2Fproject2.py" target="_blank">https://github.com/techwithtim/3-Mini-Python-Projects/blob/main/project2.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>02:15:04 | #8 - Timed Math Challenge (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F3-Mini-Python-Projects%2Fblob%2Fmain%2Fproject3.py" target="_blank">https://github.com/techwithtim/3-Mini-Python-Projects/blob/main/project3.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>02:28:02 | #9 - Slot Machine (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2FPython-Slot-Machine" target="_blank">https://github.com/techwithtim/Python-Slot-Machine</a><span>&nbsp;</span><br /><span>---</span><br /><span>03:20:43 | #10 - Turtle Racing (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2FTurtle-Racing-V2" target="_blank">https://github.com/techwithtim/Turtle-Racing-V2</a><span>&nbsp;</span><br /><span>Turtle Docs:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fdocs.python.org%2F3%2Flibrary%2Fturtle.html" target="_blank">https://docs.python.org/3/library/turtle.html</a><span>&nbsp;</span><br /><span>---</span><br /><span>04:13:09 | #11 - WPM Typing Test (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2FWPM_Typing_Test" target="_blank">https://github.com/techwithtim/WPM_Typing_Test</a><span>&nbsp;</span><br /><span>Curses Docs:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fdocs.python.org%2F3%2Fhowto%2Fcurses.html" target="_blank">https://docs.python.org/3/howto/curses.html</a><span>&nbsp;</span><br /><span>05:09:43 | #12 - Alarm Clock (Easy)</span><br /><span>Python Project Idea Blog:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fhackr.io%2Fblog%2Fpython-projects" target="_blank">https://hackr.io/blog/python-projects</a><span>&nbsp;</span><br /><span>Sound Effects:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fwww.fesliyanstudios.com%2Froyalty-free-sound-effects-download%2Falarm-203" target="_blank">https://www.fesliyanstudios.com/royalty-free-sound-effects-download/alarm-203</a><span>&nbsp;</span><br /><span>---</span><br /><span>05:22:07 | #13 - Password Generator (Easy)</span><br /><span>Python Project Idea Blog:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fhackr.io%2Fblog%2Fpython-projects" target="_blank">https://hackr.io/blog/python-projects</a><span>&nbsp;</span><br /><span>---</span><br /><span>05:39:16 | #14 - Shortest Path Finder (Advanced)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F3-Mini-Python-Projects-For-Intermediates%2Fblob%2Fmain%2Fpath-finder.py" target="_blank">https://github.com/techwithtim/3-Mini-Python-Projects-For-Intermediates/blob/main/path-finder.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>06:14:53 | #15 - NBA Stats &amp; Current Scores (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F3-Mini-Python-Projects-For-Intermediates%2Fblob%2Fmain%2Fnba-scores.py" target="_blank">https://github.com/techwithtim/3-Mini-Python-Projects-For-Intermediates/blob/main/nba-scores.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>06:38:22 | #16 - Currency Converter (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2F3-Mini-Python-Projects-For-Intermediates%2Fblob%2Fmain%2Fcurrency-converter.py" target="_blank">https://github.com/techwithtim/3-Mini-Python-Projects-For-Intermediates/blob/main/currency-converter.py</a><span>&nbsp;</span><br /><span>API: https://free.currencyconverterapi.com/</span><br /><span>---</span><br /><span>06:58:51 | #17 - YouTube Video Downloader (Medium)</span><br /><span>Code: &nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2FPython-Beginner-Automation-Projects%2Fblob%2Fmain%2Fyoutube.py" target="_blank">https://github.com/techwithtim/Python-Beginner-Automation-Projects/blob/main/youtube.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>07:09:50 | #18 - Automated File Backup (Medium)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2FPython-Beginner-Automation-Projects%2Fblob%2Fmain%2Fbackup.py" target="_blank">https://github.com/techwithtim/Python-Beginner-Automation-Projects/blob/main/backup.py</a><span>&nbsp;</span><br /><span>---</span><br /><span>07:21:18 | #19 - Mastermind/4 Color Match (Advanced)</span><br /><span>---</span><br /><span>07:48:20 | #20 - Aim Trainer (Advanced)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2FPython-Aim-Trainer" target="_blank">https://github.com/techwithtim/Python-Aim-Trainer</a><span>&nbsp;</span><br /><span>---</span><br /><span>08:39:20 | #21 - Advanced Python Scripting (Advanced)</span><br /><span>Code:&nbsp;</span><a href="https://morioh.com/redirect?id=65b0752318cf2dc4d28010e1&amp;own=5ff684ea1a53c42123416f96&amp;l=https%3A%2F%2Fgithub.com%2Ftechwithtim%2FPython-Scripting-Project" target="_blank">https://github.com/techwithtim/Python-Scripting-Project</a><span>&nbsp;</span></p></div></div></div>]]></description>
	<dc:creator>BioStar</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/36502/creating-conda-environment-for-python27</guid>
	<pubDate>Mon, 07 May 2018 08:56:52 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/36502/creating-conda-environment-for-python27</link>
	<title><![CDATA[Creating conda environment for python2.7]]></title>
	<description><![CDATA[<p>TIP: By default, environments are installed into the&nbsp;<code><span>envs</span></code>&nbsp;directory in your conda directory. Run&nbsp;<code><span>conda</span>&nbsp;<span>create</span>&nbsp;<span>--help</span></code>&nbsp;for information on specifying a different path.</p><p>Use the Terminal or an Anaconda Prompt for the following steps.</p><ol>
<li>
<p>To create an environment:</p>
<div>
<div>
<pre><span></span><span>conda</span> <span>create</span> <span>--</span><span>name</span> <span>myenv</span>
</pre>
</div>
</div>
<p>NOTE: Replace&nbsp;<code><span>myenv</span></code>&nbsp;with the environment name.</p>
</li>
<li>
<p>When conda asks you to proceed, type&nbsp;<code><span>y</span></code>:</p>
<div>
<div>
<pre><span></span>proceed ([y]/n)?
</pre>
</div>
</div>
</li>
</ol><p>This creates the myenv environment in&nbsp;<code><span>/envs/</span></code>. This environment uses the same version of Python that you are currently using, because you did not specify a version.</p><p>To create an environment with a specific version of Python:</p><div><div><pre><span></span>conda create -n myenv <span>python</span><span>=</span><span>3</span>.4
</pre></div></div><p>To create an environment with a specific package:</p><div><div><pre><span></span>conda create -n myenv scipy
</pre></div></div><p>OR:</p><div><div><pre><span></span>conda create -n myenv python
conda install -n myenv scipy
</pre></div></div><p>To create an environment with a specific version of a package:</p><div><div><pre><span></span>conda create -n myenv <span>scipy</span><span>=</span><span>0</span>.15.0
</pre></div></div><p>OR:</p><div><div><pre><span></span>conda create -n myenv python
conda install -n myenv <span>scipy</span><span>=</span><span>0</span>.15.0
</pre></div></div><p>To create an environment with a specific version of Python and multiple packages:</p><div><div><pre><span></span>conda create -n myenv <span>python</span><span>=</span><span>3</span>.4 <span>scipy</span><span>=</span><span>0</span>.15.0 astroid babel
</pre></div></div><p>TIP: Install all the programs that you want in this environment at the same time. Installing 1 program at a time can lead to dependency conflicts.</p><p>To automatically install pip or another program every time a new environment is created, add the default programs to the&nbsp;<a href="https://conda.io/docs/user-guide/configuration/use-condarc.html#config-add-default-pkgs">create_default_packages</a>&nbsp;section of your&nbsp;<code><span>.condarc</span></code>&nbsp;configuration file. The default packages are installed every time you create a new environment. If you do not want the default packages installed in a particular environment, use the&nbsp;<code><span>--no-default-packages</span></code>&nbsp;flag:</p><div><div><pre><span></span>conda create --no-default-packages -n myenv python
</pre></div></div><p>TIP: You can add much more to the&nbsp;<code><span>conda</span>&nbsp;<span>create</span></code>&nbsp;command. For details, run&nbsp;<code><span>conda</span>&nbsp;<span>create</span>&nbsp;<span>--help</span></code>.</p><p>➜ redundans git:(master) ✗ conda create --name py27 python=2.7<br />Solving environment: done</p><p><br />==&gt; WARNING: A newer version of conda exists. &lt;==<br /> current version: 4.5.0<br /> latest version: 4.5.2</p><p>Please update conda by running</p><p>$ conda update -n base conda</p><p>&nbsp;</p><p>## Package Plan ##</p><p>environment location: /home/urbe/anaconda3/envs/py27</p><p>added / updated specs: <br /> - python=2.7</p><p><br />The following packages will be downloaded:</p><p>package | build<br /> ---------------------------|-----------------<br /> wheel-0.31.0 | py27_0 61 KB<br /> python-2.7.15 | h1571d57_0 12.1 MB<br /> certifi-2018.4.16 | py27_0 142 KB<br /> sqlite-3.23.1 | he433501_0 1.5 MB<br /> setuptools-39.1.0 | py27_0 582 KB<br /> openssl-1.0.2o | h20670df_0 3.4 MB<br /> pip-10.0.1 | py27_0 1.7 MB<br /> ca-certificates-2018.03.07 | 0 124 KB<br /> ------------------------------------------------------------<br /> Total: 19.6 MB</p><p>The following NEW packages will be INSTALLED:</p><p>ca-certificates: 2018.03.07-0 <br /> certifi: 2018.4.16-py27_0 <br /> libedit: 3.1-heed3624_0 <br /> libffi: 3.2.1-hd88cf55_4 <br /> libgcc-ng: 7.2.0-hdf63c60_3 <br /> libstdcxx-ng: 7.2.0-hdf63c60_3 <br /> ncurses: 6.0-h9df7e31_2 <br /> openssl: 1.0.2o-h20670df_0<br /> pip: 10.0.1-py27_0 <br /> python: 2.7.15-h1571d57_0<br /> readline: 7.0-ha6073c6_4 <br /> setuptools: 39.1.0-py27_0 <br /> sqlite: 3.23.1-he433501_0<br /> tk: 8.6.7-hc745277_3 <br /> wheel: 0.31.0-py27_0 <br /> zlib: 1.2.11-ha838bed_2</p><p>Proceed ([y]/n)? y</p><p><br />Downloading and Extracting Packages<br />wheel 0.31.0: #################################################################################################################################################################################################### | 100% <br />python 2.7.15: ################################################################################################################################################################################################### | 100% <br />certifi 2018.4.16: ############################################################################################################################################################################################### | 100% <br />sqlite 3.23.1: ################################################################################################################################################################################################### | 100% <br />setuptools 39.1.0: ############################################################################################################################################################################################### | 100% <br />openssl 1.0.2o: ################################################################################################################################################################################################## | 100% <br />pip 10.0.1: ###################################################################################################################################################################################################### | 100% <br />ca-certificates 2018.03.07: ###################################################################################################################################################################################### | 100% <br />Preparing transaction: done<br />Verifying transaction: done<br />Executing transaction: done<br />#<br /># To activate this environment, use:<br /># &gt; source activate py27<br />#<br /># To deactivate an active environment, use:<br /># &gt; source deactivate<br />#</p><p>➜ redundans git:(master) ✗ source activate py27</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

</channel>
</rss>